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:
Burcin Akalin 2015-10-30 02:49:01 +03:00 committed by Greg Kroah-Hartman
parent a9548c223e
commit b4129f2f53
1 changed files with 9 additions and 9 deletions

View File

@ -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