mirror of https://gitee.com/openkylin/linux.git
i2c: nomadik: Fix space errors
Fix the following checkpatch errors: ERROR: space prohibited before that ',' (ctx:WxW) #280: FILE: drivers/i2c/busses/i2c-nomadik.c:280: + i2c_clr_bit(dev->virtbase + I2C_CR , I2C_CR_PE); ^ ERROR: space prohibited before that ',' (ctx:WxW) #528: FILE: drivers/i2c/busses/i2c-nomadik.c:528: + i2c_set_bit(dev->virtbase + I2C_CR , I2C_CR_PE); ^ No functional changes. Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Signed-off-by: Zihao Tang <tangzihao1@hisilicon.com> Signed-off-by: Wolfram Sang <wsa@kernel.org>
This commit is contained in:
parent
87c2de5fa6
commit
28fb89ff97
|
@ -277,7 +277,7 @@ static int init_hw(struct nmk_i2c_dev *dev)
|
|||
goto exit;
|
||||
|
||||
/* disable the controller */
|
||||
i2c_clr_bit(dev->virtbase + I2C_CR , I2C_CR_PE);
|
||||
i2c_clr_bit(dev->virtbase + I2C_CR, I2C_CR_PE);
|
||||
|
||||
disable_all_interrupts(dev);
|
||||
|
||||
|
@ -525,7 +525,7 @@ static int write_i2c(struct nmk_i2c_dev *dev, u16 flags)
|
|||
dev->virtbase + I2C_CR);
|
||||
|
||||
/* enable the controller */
|
||||
i2c_set_bit(dev->virtbase + I2C_CR , I2C_CR_PE);
|
||||
i2c_set_bit(dev->virtbase + I2C_CR, I2C_CR_PE);
|
||||
|
||||
init_completion(&dev->xfer_complete);
|
||||
|
||||
|
|
Loading…
Reference in New Issue