From: Dan Carpenter Date: Mon, 4 Jul 2016 07:47:48 +0000 (+0300) Subject: spi: s3c64xx: indent an if statement X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=47c169ee67a6adea902d597b9e7bad428c7aac12;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: Mark Brown --- 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) } } else { if (!(sdd->port_conf->quirks & S3C64XX_SPI_QUIRK_CS_AUTO)) - writel(S3C64XX_SPI_SLAVE_SIG_INACT, - sdd->regs + S3C64XX_SPI_SLAVE_SEL); + writel(S3C64XX_SPI_SLAVE_SIG_INACT, + sdd->regs + S3C64XX_SPI_SLAVE_SEL); } }