tu,freedreno: Drop the ".bo_write" flag.

It's been unused since my commit 064f395a89 ("freedreno: Tell the kernel
that all BOs are for writing.") back in 2020.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38762>
This commit is contained in:
Emma Anholt 2025-08-13 12:33:37 -07:00 committed by Marge Bot
parent 0b3f0d1662
commit 67c6abb20b
3 changed files with 0 additions and 4 deletions

View file

@ -15,7 +15,6 @@ struct fd_reg_pair {
uint64_t value;
struct fd_bo *bo;
bool is_address;
bool bo_write;
uint32_t bo_offset;
uint32_t bo_shift;
uint32_t bo_low;

View file

@ -222,8 +222,6 @@ class Bitset(object):
if address:
print(" .bo = fields.bo,")
print(" .is_address = true,")
if f.type == "waddress":
print(" .bo_write = true,")
print(" .bo_offset = fields.bo_offset,")
print(" .bo_shift = %d," % address.shr)
print(" .bo_low = %d," % address.low)

View file

@ -592,7 +592,6 @@ struct tu_reg_value {
uint64_t value;
struct tu_bo *bo;
bool is_address;
bool bo_write;
uint32_t bo_offset;
uint32_t bo_shift;
uint32_t bo_low;