diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-09-01 22:54:37 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-09-02 06:47:12 -0400 |
commit | cdc67fa9415ff37d9970729c7a8d5c8911c1d204 (patch) | |
tree | ba2fdf134054c4341d1640953401fbe2f44bd9c7 | |
parent | 175a3edcfdc4f25c53f265227c4e810ab2de80b5 (diff) |
spi: xtensa-xtfpga: Fix checkpatch issue
Fix the following checkpatch warnings.
WARNING: Missing a blank line after declarations
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-xtensa-xtfpga.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/spi-xtensa-xtfpga.c b/drivers/spi/spi-xtensa-xtfpga.c index 41e158187f9d..0dc5df5233a9 100644 --- a/drivers/spi/spi-xtensa-xtfpga.c +++ b/drivers/spi/spi-xtensa-xtfpga.c | |||
@@ -46,6 +46,7 @@ static inline unsigned int xtfpga_spi_read32(const struct xtfpga_spi *spi, | |||
46 | static inline void xtfpga_spi_wait_busy(struct xtfpga_spi *xspi) | 46 | static inline void xtfpga_spi_wait_busy(struct xtfpga_spi *xspi) |
47 | { | 47 | { |
48 | unsigned i; | 48 | unsigned i; |
49 | |||
49 | for (i = 0; xtfpga_spi_read32(xspi, XTFPGA_SPI_BUSY) && | 50 | for (i = 0; xtfpga_spi_read32(xspi, XTFPGA_SPI_BUSY) && |
50 | i < BUSY_WAIT_US; ++i) | 51 | i < BUSY_WAIT_US; ++i) |
51 | udelay(1); | 52 | udelay(1); |