[PATCH] scsi: esp_scsi: Clean up errors in esp_scsi.c

chenguohua@jari.cn posted 1 patch 2 years, 4 months ago
drivers/scsi/esp_scsi.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] scsi: esp_scsi: Clean up errors in esp_scsi.c
Posted by chenguohua@jari.cn 2 years, 4 months ago
Fix the following errors reported by checkpatch:

ERROR: space required after that ',' (ctx:VxV)
ERROR: need consistent spacing around '<<' (ctx:WxV)

Signed-off-by: GuoHua Cheng <chenguohua@jari.cn>
---
 drivers/scsi/esp_scsi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/esp_scsi.c b/drivers/scsi/esp_scsi.c
index 97816a0e6240..56cfbd9e0a88 100644
--- a/drivers/scsi/esp_scsi.c
+++ b/drivers/scsi/esp_scsi.c
@@ -114,7 +114,7 @@ do {   if (esp_debug & ESP_DEBUG_COMMAND)	\
 } while (0)
 
 #define esp_read8(REG)		esp->ops->esp_read8(esp, REG)
-#define esp_write8(VAL,REG)	esp->ops->esp_write8(esp, VAL, REG)
+#define esp_write8(VAL, REG)	esp->ops->esp_write8(esp, VAL, REG)
 
 static void esp_log_fill_regs(struct esp *esp,
 			      struct esp_event_ent *p)
@@ -543,7 +543,7 @@ static u32 esp_dma_length_limit(struct esp *esp, u32 dma_addr, u32 dma_len)
 		base = dma_addr & ((1U << 24) - 1U);
 		end = base + dma_len;
 		if (end > (1U << 24))
-			end = (1U <<24);
+			end = (1U << 24);
 		dma_len = end - base;
 	}
 	return dma_len;
-- 
2.17.1