staging: media: bcm2048: remove unnecessary space after a cast
This patch fixes the checkpatch issue: CHECK: No space is necessary after a cast Signed-off-by: Amarjargal Gundjalam <amarjargal.gundjalam@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
70fe322683
commit
cf2f34089f
|
@ -184,8 +184,8 @@
|
|||
#define dev_to_v4l2(f) ((f * BCM2048_FREQDEV_UNIT) / BCM2048_FREQV4L2_MULTI)
|
||||
#define v4l2_to_dev(f) ((f * BCM2048_FREQV4L2_MULTI) / BCM2048_FREQDEV_UNIT)
|
||||
|
||||
#define msb(x) ((u8)((u16) x >> 8))
|
||||
#define lsb(x) ((u8)((u16) x & 0x00FF))
|
||||
#define msb(x) ((u8)((u16)x >> 8))
|
||||
#define lsb(x) ((u8)((u16)x & 0x00FF))
|
||||
#define compose_u16(msb, lsb) (((u16)msb << 8) | lsb)
|
||||
|
||||
#define BCM2048_DEFAULT_POWERING_DELAY 20
|
||||
|
|
Loading…
Reference in New Issue