lkml.org 
[lkml]   [2023]   [Sep]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] scsi: esp_scsi: Clean up errors in esp_scsi.c
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
\
 
 \ /
  Last update: 2023-09-27 18:52    [W:0.100 / U:0.016 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site