diff options
author | Lionel Landwerlin <[email protected]> | 2019-08-09 16:01:04 +0300 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-08-09 22:59:43 +0300 |
commit | 8a884a25c5a4325875324b0cc4e69851711f6c9f (patch) | |
tree | c11c3ce1b3415fe05dae731341f2064cbf08bf08 /src/amd/common/ac_surface.c | |
parent | a233a3a74ec7785f7e8f885bc6b4a444af23010d (diff) |
amd: prepare dropping include of p_compiler.h
Signed-off-by: Lionel Landwerlin <[email protected]>
Acked-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/amd/common/ac_surface.c')
-rw-r--r-- | src/amd/common/ac_surface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/common/ac_surface.c b/src/amd/common/ac_surface.c index a9052d068e9..5cfd192118d 100644 --- a/src/amd/common/ac_surface.c +++ b/src/amd/common/ac_surface.c @@ -1265,7 +1265,7 @@ static int gfx9_compute_miptree(ADDR_HANDLE addrlib, return ret; surf->u.gfx9.dcc_retile_map[index * 2] = addrout.addr; - if (addrout.addr > USHRT_MAX) + if (addrout.addr > UINT16_MAX) surf->u.gfx9.dcc_retile_use_uint16 = false; /* Compute dst DCC address */ @@ -1278,7 +1278,7 @@ static int gfx9_compute_miptree(ADDR_HANDLE addrlib, return ret; surf->u.gfx9.dcc_retile_map[index * 2 + 1] = addrout.addr; - if (addrout.addr > USHRT_MAX) + if (addrout.addr > UINT16_MAX) surf->u.gfx9.dcc_retile_use_uint16 = false; assert(index * 2 + 1 < surf->u.gfx9.dcc_retile_num_elements); |