diff options
author | Samuel Pitoiset <[email protected]> | 2018-10-30 12:29:13 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-10-31 09:21:28 +0100 |
commit | 9ef8ea1451eb8c830ebe3017aee4d59ffdb24df7 (patch) | |
tree | 723994a510bf70f4f91757e231f32acf8d6147d0 /src/amd/common | |
parent | a9a56f47f883018922a404f908325996718854b8 (diff) |
radv: use WAIT_REG_MEM_GREATER_OR_EQUAL instead of a magic value
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/common')
-rw-r--r-- | src/amd/common/sid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/common/sid.h b/src/amd/common/sid.h index d88ecf55806..5c53133147f 100644 --- a/src/amd/common/sid.h +++ b/src/amd/common/sid.h @@ -146,6 +146,7 @@ #define PKT3_WAIT_REG_MEM 0x3C #define WAIT_REG_MEM_EQUAL 3 #define WAIT_REG_MEM_NOT_EQUAL 4 +#define WAIT_REG_MEM_GREATER_OR_EQUAL 5 #define WAIT_REG_MEM_MEM_SPACE(x) (((unsigned)(x) & 0x3) << 4) #define WAIT_REG_MEM_PFP (1 << 8) #define PKT3_MEM_WRITE 0x3D /* not on CIK */ |