summaryrefslogtreecommitdiffstats
path: root/src/amd
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2017-06-01 14:48:06 +0100
committerEric Engestrom <[email protected]>2017-06-07 01:18:09 +0100
commit63a8a88ac4b91a90ee7484b34abeb86e529234e7 (patch)
tree957709652b3329783acb94fd9921bd8e26d87b63 /src/amd
parentf0b82bc5450b0f12290875f7ab01b22eb0115e83 (diff)
tree-wide: remove trailing backslash
Simple search for a backslash followed by two newlines. If one of the newlines were to be removed, this would cause issues, so let's just remove these trailing backslashes. Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r--src/amd/common/amd_kernel_code_t.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/common/amd_kernel_code_t.h b/src/amd/common/amd_kernel_code_t.h
index d0d7809da10..f8e95085181 100644
--- a/src/amd/common/amd_kernel_code_t.h
+++ b/src/amd/common/amd_kernel_code_t.h
@@ -36,7 +36,7 @@
// Gets bits for specified mask from specified src packed instance.
#define AMD_HSA_BITS_GET(src, mask) \
- ((src & mask) >> mask ## _SHIFT) \
+ ((src & mask) >> mask ## _SHIFT)
/* Every amd_*_code_t has the following properties, which are composed of
* a number of bit fields. Every bit field has a mask (AMD_CODE_PROPERTY_*),