mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 15:43:35 -04:00
[media] staging: omap24xx: fix coding style
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>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
ba2d35c14b
commit
576f7d3487
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user