aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rts5208
diff options
context:
space:
mode:
authorSergio Paracuellos <sergio.paracuellos@gmail.com>2016-09-23 16:12:12 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-25 12:40:30 +0200
commit9afccdfe485a1df5e849dd4add91756f2ae2891d (patch)
treed9bfe58ed1899ff1222f8731f10e5231c290e1f0 /drivers/staging/rts5208
parentstaging: rts5208: remove not used typedef in rtsx_sys.h (diff)
downloadlinux-dev-9afccdfe485a1df5e849dd4add91756f2ae2891d.tar.xz
linux-dev-9afccdfe485a1df5e849dd4add91756f2ae2891d.zip
staging: rts5208: fix line style warnings in spi.c
This patch fixes the following checkpatch.pl warning in spi.c: WARNING: line over 80 characters Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rts5208')
-rw-r--r--drivers/staging/rts5208/spi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/rts5208/spi.c b/drivers/staging/rts5208/spi.c
index 26eb2a184f91..13c539c83838 100644
--- a/drivers/staging/rts5208/spi.c
+++ b/drivers/staging/rts5208/spi.c
@@ -39,7 +39,8 @@ static int spi_init(struct rtsx_chip *chip)
int retval;
retval = rtsx_write_register(chip, SPI_CONTROL, 0xFF,
- CS_POLARITY_LOW | DTO_MSB_FIRST | SPI_MASTER | SPI_MODE0 | SPI_AUTO);
+ CS_POLARITY_LOW | DTO_MSB_FIRST
+ | SPI_MASTER | SPI_MODE0 | SPI_AUTO);
if (retval) {
rtsx_trace(chip);
return retval;