mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
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>
This commit is contained in:
parent
a9548c223e
commit
b4129f2f53
@ -40,18 +40,18 @@
|
||||
#include "nvec.h"
|
||||
|
||||
#define I2C_CNFG 0x00
|
||||
#define I2C_CNFG_PACKET_MODE_EN (1<<10)
|
||||
#define I2C_CNFG_NEW_MASTER_SFM (1<<11)
|
||||
#define I2C_CNFG_PACKET_MODE_EN (1 << 10)
|
||||
#define I2C_CNFG_NEW_MASTER_SFM (1 << 11)
|
||||
#define I2C_CNFG_DEBOUNCE_CNT_SHIFT 12
|
||||
|
||||
#define I2C_SL_CNFG 0x20
|
||||
#define I2C_SL_NEWSL (1<<2)
|
||||
#define I2C_SL_NACK (1<<1)
|
||||
#define I2C_SL_RESP (1<<0)
|
||||
#define I2C_SL_IRQ (1<<3)
|
||||
#define END_TRANS (1<<4)
|
||||
#define RCVD (1<<2)
|
||||
#define RNW (1<<1)
|
||||
#define I2C_SL_NEWSL (1 << 2)
|
||||
#define I2C_SL_NACK (1 << 1)
|
||||
#define I2C_SL_RESP (1 << 0)
|
||||
#define I2C_SL_IRQ (1 << 3)
|
||||
#define END_TRANS (1 << 4)
|
||||
#define RCVD (1 << 2)
|
||||
#define RNW (1 << 1)
|
||||
|
||||
#define I2C_SL_RCVD 0x24
|
||||
#define I2C_SL_STATUS 0x28
|
||||
|
Loading…
Reference in New Issue
Block a user