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
a9548c22 d8340ed0

+1 -1
+1 -1
drivers/staging/nvec/nvec.c
··· 740 740 writel(I2C_SL_NEWSL, nvec->base + I2C_SL_CNFG); 741 741 writel(0x1E, nvec->base + I2C_SL_DELAY_COUNT); 742 742 743 - writel(nvec->i2c_addr>>1, nvec->base + I2C_SL_ADDR1); 743 + writel(nvec->i2c_addr >> 1, nvec->base + I2C_SL_ADDR1); 744 744 writel(0, nvec->base + I2C_SL_ADDR2); 745 745 746 746 enable_irq(nvec->irq);