Resolved: "CHECK: Alignment should match open parenthesis" from checkpatch

Signed-off-by: Chandra Annamaneni <chandra...@gmail.com>
---
Previous versions of these patches were not split into different 
patches, did not have different patch numbers and did not have the
keyword staging.
 drivers/staging/kpc2000/kpc2000_spi.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/kpc2000/kpc2000_spi.c 
b/drivers/staging/kpc2000/kpc2000_spi.c
index 929136cdc3e1..24de8d63f504 100644
--- a/drivers/staging/kpc2000/kpc2000_spi.c
+++ b/drivers/staging/kpc2000/kpc2000_spi.c
@@ -313,19 +313,19 @@ kp_spi_transfer_one_message(struct spi_master *master, 
struct spi_message *m)
                if (transfer->speed_hz > KP_SPI_CLK ||
                    (len && !(rx_buf || tx_buf))) {
                        dev_dbg(kpspi->dev, "  transfer: %d Hz, %d %s%s, %d 
bpw\n",
-                                       transfer->speed_hz,
-                                       len,
-                                       tx_buf ? "tx" : "",
-                                       rx_buf ? "rx" : "",
-                                       transfer->bits_per_word);
+                               transfer->speed_hz,
+                               len,
+                               tx_buf ? "tx" : "",
+                               rx_buf ? "rx" : "",
+                               transfer->bits_per_word);
                        dev_dbg(kpspi->dev, "  transfer -EINVAL\n");
                        return -EINVAL;
                }
                if (transfer->speed_hz &&
                    transfer->speed_hz < (KP_SPI_CLK >> 15)) {
                        dev_dbg(kpspi->dev, "speed_hz %d below minimum %d Hz\n",
-                                       transfer->speed_hz,
-                                       KP_SPI_CLK >> 15);
+                               transfer->speed_hz,
+                               KP_SPI_CLK >> 15);
                        dev_dbg(kpspi->dev, "  speed_hz -EINVAL\n");
                        return -EINVAL;
                }
-- 
2.20.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to