diff mbox series

scsi: esp_scsi: Clean up errors in esp_scsi.c

Message ID 234008e6.887.18ad5aa5094.Coremail.chenguohua@jari.cn (mailing list archive)
State Rejected
Headers show
Series scsi: esp_scsi: Clean up errors in esp_scsi.c | expand

Commit Message

chenguohua@jari.cn Sept. 27, 2023, 8:03 a.m. UTC
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 mbox series

Patch

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;