diff options
author | Marek Olšák <[email protected]> | 2017-06-16 00:11:50 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-06-19 20:15:36 +0200 |
commit | 064f07fef343f517d4bf20f06af9fbb1baea2ff8 (patch) | |
tree | 7d034ea91c67474637df57510b9f6197e65bc490 /src/amd | |
parent | ed291cea3d6e12620e244ef791afdeb15fc4f5dd (diff) |
ac/sid.h: don't use parentheses in PKT3_RELEASE_MEM definition
The parses skips the line if it contains parentheses.
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/common/sid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/common/sid.h b/src/amd/common/sid.h index c69f4f6dbf1..a8c78c1b2bf 100644 --- a/src/amd/common/sid.h +++ b/src/amd/common/sid.h @@ -170,7 +170,7 @@ */ /* fix CP DMA before uncommenting: */ /*#define PKT3_EVENT_WRITE_EOS 0x48*/ /* not on GFX9 */ -#define PKT3_RELEASE_MEM 0x49 /* GFX9+ (any ring) or GFX8 (compute ring only) */ +#define PKT3_RELEASE_MEM 0x49 /* GFX9+ [any ring] or GFX8 [compute ring only] */ #define PKT3_ONE_REG_WRITE 0x57 /* not on CIK */ #define PKT3_ACQUIRE_MEM 0x58 /* new for CIK */ #define PKT3_SET_CONFIG_REG 0x68 |