From: Jiong Du Date: Tue, 25 Oct 2016 11:40:47 +0000 (+0800) Subject: staging: ks7010: fix complex macro error X-Git-Tag: v4.10-rc1~148^2~416 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=84b8ae9fd5981884dbdbdeda9ef5efd16ade5ddc;p=karo-tx-linux.git staging: ks7010: fix complex macro error Fixes checkpatch error: Macros with complex values should be enclosed in parentheses Signed-off-by: Jiong Du Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ks7010/michael_mic.c b/drivers/staging/ks7010/michael_mic.c index fadc5636c148..09202adf399f 100644 --- a/drivers/staging/ks7010/michael_mic.c +++ b/drivers/staging/ks7010/michael_mic.c @@ -17,7 +17,7 @@ #define ROL32(A, n) (((A) << (n)) | (((A)>>(32-(n))) & ((1UL << (n)) - 1))) #define ROR32(A, n) ROL32((A), 32-(n)) // Convert from Byte[] to UInt32 in a portable way -#define getUInt32(A, B) (uint32_t)(A[B+0] << 0) + (A[B+1] << 8) + (A[B+2] << 16) + (A[B+3] << 24) +#define getUInt32(A, B) ((uint32_t)(A[B+0] << 0) + (A[B+1] << 8) + (A[B+2] << 16) + (A[B+3] << 24)) // Convert from UInt32 to Byte[] in a portable way #define putUInt32(A, B, C) \