diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2016-07-04 03:47:48 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-07-04 04:47:58 -0400 |
commit | 47c169ee67a6adea902d597b9e7bad428c7aac12 (patch) | |
tree | 8759704c8e30c0be7be7d69b45788aeb0543ad73 /drivers/spi/spi-s3c64xx.c | |
parent | 730d9d4d11cf48b17d07daaff1f0540642317e09 (diff) |
spi: s3c64xx: indent an if statement
It generates a static checker warning if an if statement isn't indented.
I think the code is fine except for the white space issue.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-s3c64xx.c')
-rw-r--r-- | drivers/spi/spi-s3c64xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index 6d8486fc668f..9f0119f64f93 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c | |||
@@ -330,8 +330,8 @@ static void s3c64xx_spi_set_cs(struct spi_device *spi, bool enable) | |||
330 | } | 330 | } |
331 | } else { | 331 | } else { |
332 | if (!(sdd->port_conf->quirks & S3C64XX_SPI_QUIRK_CS_AUTO)) | 332 | if (!(sdd->port_conf->quirks & S3C64XX_SPI_QUIRK_CS_AUTO)) |
333 | writel(S3C64XX_SPI_SLAVE_SIG_INACT, | 333 | writel(S3C64XX_SPI_SLAVE_SIG_INACT, |
334 | sdd->regs + S3C64XX_SPI_SLAVE_SEL); | 334 | sdd->regs + S3C64XX_SPI_SLAVE_SEL); |
335 | } | 335 | } |
336 | } | 336 | } |
337 | 337 | ||