diff options
author | danh-arm <dan.handley@arm.com> | 2018-05-03 16:42:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-03 16:42:07 +0100 |
commit | e9eb1460121709a9509f428fb94c8bd4a913361c (patch) | |
tree | a8c768da4ee4c44a77e5e70791fc0dadca67a840 | |
parent | 64af39d065dfafb3a8a79256974d9c58a5121c2d (diff) | |
parent | 0c487ea42a8abb4062e26bfda42aacfd0fe84601 (diff) |
Merge pull request #1371 from antonio-nino-diaz-arm/an/fix-checkpatch
smccc: Fix checkpatch error in header file
-rw-r--r-- | include/lib/smccc.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/lib/smccc.h b/include/lib/smccc.h index 1e7af6ab..660c1dbd 100644 --- a/include/lib/smccc.h +++ b/include/lib/smccc.h @@ -14,8 +14,10 @@ #define SMCCC_VERSION_MINOR_SHIFT U(0) #define SMCCC_VERSION_MINOR_MASK U(0xFFFF) #define MAKE_SMCCC_VERSION(_major, _minor) \ - ( (((uint32_t)(_major) & SMCCC_VERSION_MAJOR_MASK) << SMCCC_VERSION_MAJOR_SHIFT) \ - | (((uint32_t)(_minor) & SMCCC_VERSION_MINOR_MASK) << SMCCC_VERSION_MINOR_SHIFT)) + ((((uint32_t)(_major) & SMCCC_VERSION_MAJOR_MASK) << \ + SMCCC_VERSION_MAJOR_SHIFT) \ + | (((uint32_t)(_minor) & SMCCC_VERSION_MINOR_MASK) << \ + SMCCC_VERSION_MINOR_SHIFT)) #if SMCCC_MAJOR_VERSION == 1 # define SMCCC_MINOR_VERSION U(1) |