aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/michael.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-03-18 10:44:57 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-18 17:21:37 -0700
commita51ff9058ca08a97b2e69dc70748a53eb144c3f8 (patch)
tree7401691ba485e17428663b75fb62153df83fb4a2 /drivers/staging/vt6655/michael.h
parentstaging:vt6655:mib: Whitespace cleanups (diff)
downloadlinux-dev-a51ff9058ca08a97b2e69dc70748a53eb144c3f8.tar.xz
linux-dev-a51ff9058ca08a97b2e69dc70748a53eb144c3f8.zip
staging:vt6655:michael: Whitespace cleanups
Neatening only. git diff -w shows no differences. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/michael.h')
-rw-r--r--drivers/staging/vt6655/michael.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/vt6655/michael.h b/drivers/staging/vt6655/michael.h
index 3131b161d6a9..03936eec72ff 100644
--- a/drivers/staging/vt6655/michael.h
+++ b/drivers/staging/vt6655/michael.h
@@ -49,9 +49,9 @@ void MIC_vGetMIC(unsigned long *pdwL, unsigned long *pdwR);
/*--------------------- Export Macros ------------------------------*/
// Rotation functions on 32 bit values
-#define ROL32( A, n ) \
- ( ((A) << (n)) | ( ((A)>>(32-(n))) & ( (1UL << (n)) - 1 ) ) )
-#define ROR32( A, n ) ROL32( (A), 32-(n) )
+#define ROL32(A, n) \
+ (((A) << (n)) | (((A)>>(32-(n))) & ((1UL << (n)) - 1)))
+#define ROR32(A, n) ROL32((A), 32-(n))
#endif //__MICHAEL_H__