lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <234008e6.887.18ad5aa5094.Coremail.chenguohua@jari.cn>
Date:   Wed, 27 Sep 2023 16:03:43 +0800 (GMT+08:00)
From:   chenguohua@...i.cn
To:     jejb@...ux.ibm.com, martin.petersen@...cle.com
Cc:     linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org
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@...i.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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ