Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: nvec: Add space around '<<'

Add space around operator '<<'. Problem found using
checkpatch.pl
CHECK: spaces preferred around that '<<' (ctx:VxV)

Signed-off-by: Burcin Akalin <brcnakalin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Burcin Akalin and committed by
Greg Kroah-Hartman
b4129f2f a9548c22

+9 -9
+9 -9
drivers/staging/nvec/nvec.c
··· 40 40 #include "nvec.h" 41 41 42 42 #define I2C_CNFG 0x00 43 - #define I2C_CNFG_PACKET_MODE_EN (1<<10) 44 - #define I2C_CNFG_NEW_MASTER_SFM (1<<11) 43 + #define I2C_CNFG_PACKET_MODE_EN (1 << 10) 44 + #define I2C_CNFG_NEW_MASTER_SFM (1 << 11) 45 45 #define I2C_CNFG_DEBOUNCE_CNT_SHIFT 12 46 46 47 47 #define I2C_SL_CNFG 0x20 48 - #define I2C_SL_NEWSL (1<<2) 49 - #define I2C_SL_NACK (1<<1) 50 - #define I2C_SL_RESP (1<<0) 51 - #define I2C_SL_IRQ (1<<3) 52 - #define END_TRANS (1<<4) 53 - #define RCVD (1<<2) 54 - #define RNW (1<<1) 48 + #define I2C_SL_NEWSL (1 << 2) 49 + #define I2C_SL_NACK (1 << 1) 50 + #define I2C_SL_RESP (1 << 0) 51 + #define I2C_SL_IRQ (1 << 3) 52 + #define END_TRANS (1 << 4) 53 + #define RCVD (1 << 2) 54 + #define RNW (1 << 1) 55 55 56 56 #define I2C_SL_RCVD 0x24 57 57 #define I2C_SL_STATUS 0x28