[media] staging: omap24xx: fix coding style
authorileana@telecom-paristech.fr <ileana@telecom-paristech.fr>
Tue, 18 Mar 2014 13:31:03 +0000 (10:31 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Wed, 16 Apr 2014 21:21:19 +0000 (18:21 -0300)
Fix missing parentheses in macros
Errors found by checkpatch.pl

Signed-off-by: Ioana Ileana <ileana@enst.fr>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/staging/media/omap24xx/tcm825x.h

index 9970fb1c596a82e68398a991b9316f1883810507..8a29636d1ad4d36c419255faf4ff094baa043d8f 100644 (file)
@@ -21,8 +21,8 @@
 
 #define TCM825X_NAME "tcm825x"
 
-#define TCM825X_MASK(x)  x & 0x00ff
-#define TCM825X_ADDR(x) (x & 0xff00) >> 8
+#define TCM825X_MASK(x) (x & 0x00ff)
+#define TCM825X_ADDR(x) ((x & 0xff00) >> 8)
 
 /* The TCM825X I2C sensor chip has a fixed slave address of 0x3d. */
 #define TCM825X_I2C_ADDR       0x3d