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
d8340ed044
commit
a9548c223e
|
@ -740,7 +740,7 @@ static void tegra_init_i2c_slave(struct nvec_chip *nvec)
|
|||
writel(I2C_SL_NEWSL, nvec->base + I2C_SL_CNFG);
|
||||
writel(0x1E, nvec->base + I2C_SL_DELAY_COUNT);
|
||||
|
||||
writel(nvec->i2c_addr>>1, nvec->base + I2C_SL_ADDR1);
|
||||
writel(nvec->i2c_addr >> 1, nvec->base + I2C_SL_ADDR1);
|
||||
writel(0, nvec->base + I2C_SL_ADDR2);
|
||||
|
||||
enable_irq(nvec->irq);
|
||||
|
|
Loading…
Reference in New Issue