Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

spi: armada-3700: Coding style fixes

The following warning are reported by checkpatch.pl:

CHECK: Alignment should match open parenthesis
+static void a3700_spi_transfer_setup(struct spi_device *spi,
+ struct spi_transfer *xfer)

WARNING: Missing a blank line after declarations
+ u32 data = le32_to_cpu(val);
+ memcpy(a3700_spi->rx_buf, &data, 4);

total: 0 errors, 1 warnings, 1 checks, 923 lines checked

Signed-off-by: Romain Perier <romain.perier@free-electrons.com>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Romain Perier and committed by
Mark Brown
85798e15 cfd6693c

+2 -1
+2 -1
drivers/spi/spi-armada-3700.c
··· 420 420 } 421 421 422 422 static void a3700_spi_transfer_setup(struct spi_device *spi, 423 - struct spi_transfer *xfer) 423 + struct spi_transfer *xfer) 424 424 { 425 425 struct a3700_spi *a3700_spi; 426 426 unsigned int byte_len; ··· 561 561 val = spireg_read(a3700_spi, A3700_SPI_DATA_IN_REG); 562 562 if (a3700_spi->buf_len >= 4) { 563 563 u32 data = le32_to_cpu(val); 564 + 564 565 memcpy(a3700_spi->rx_buf, &data, 4); 565 566 566 567 a3700_spi->buf_len -= 4;