mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 13:30:11 +01:00
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:
parent
0b3f0d1662
commit
67c6abb20b
3 changed files with 0 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue