]> Pileus Git - ~andy/linux/commitdiff
rtl8192e: Fixing checkpatch errors
authorAndreas Frembs <andreas.frembs@studium.uni-erlangen.de>
Fri, 20 Dec 2013 10:29:08 +0000 (11:29 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Dec 2013 19:41:28 +0000 (11:41 -0800)
This patch fixes the following checkpatch errors from rtllib_endianfree.h:
 - ERROR: Macros with complex values should be enclosed in parenthesis

Signed-off-by: Andreas Frembs <andreas.frembs@studium.uni-erlangen.de>
Signed-off-by: Matthias Schoepe <matthias.schoepe@studium.uni-erlangen.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtllib_endianfree.h

index b268605a52aa02d03ed482ac8dda761aacc13d2c..39b820422ac847fe958c685b6610770ffd729a0a 100644 (file)
@@ -33,9 +33,9 @@
 #define ReadEF2Byte(_ptr)              EF2Byte(*((u16 *)(_ptr)))
 #define ReadEF4Byte(_ptr)              EF4Byte(*((u32 *)(_ptr)))
 
-#define WriteEF1Byte(_ptr, _val)       (*((u8 *)(_ptr))) = EF1Byte(_val)
-#define WriteEF2Byte(_ptr, _val)       (*((u16 *)(_ptr))) = EF2Byte(_val)
-#define WriteEF4Byte(_ptr, _val)       (*((u32 *)(_ptr))) = EF4Byte(_val)
+#define WriteEF1Byte(_ptr, _val)       ((*((u8 *)(_ptr))) = EF1Byte(_val))
+#define WriteEF2Byte(_ptr, _val)       ((*((u16 *)(_ptr))) = EF2Byte(_val))
+#define WriteEF4Byte(_ptr, _val)       ((*((u32 *)(_ptr))) = EF4Byte(_val))
 #if BYTE_ORDER == __MACHINE_LITTLE_ENDIAN
 #define H2N1BYTE(_val) ((u8)(_val))
 #define H2N2BYTE(_val) (((((u16)(_val))&0x00ff)<<8)|\