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: <5e399c83.87e.18ad57cf98b.Coremail.chenguohua@jari.cn>
Date:   Wed, 27 Sep 2023 15:14:11 +0800 (GMT+08:00)
From:   chenguohua@...i.cn
To:     hare@...e.com, jejb@...ux.ibm.com, martin.petersen@...cle.com
Cc:     linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] scsi: aic7xxx: Clean up errors in aicasm.c

Fix the following errors reported by checkpatch:

ERROR: return is not a function, parentheses are not required
ERROR: space required before the open parenthesis '('

Signed-off-by: GuoHua Cheng <chenguohua@...i.cn>
---
 drivers/scsi/aic7xxx/aicasm/aicasm.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm.c b/drivers/scsi/aic7xxx/aicasm/aicasm.c
index a22f0fffc9b9..2f74618d0038 100644
--- a/drivers/scsi/aic7xxx/aicasm/aicasm.c
+++ b/drivers/scsi/aic7xxx/aicasm/aicasm.c
@@ -97,7 +97,7 @@ FILE *regdiagfile;
 int   src_mode;
 int   dst_mode;
 
-static STAILQ_HEAD(,instruction) seq_program;
+static STAILQ_HEAD(, instruction) seq_program;
 struct cs_tailq cs_tailq;
 struct scope_list scope_stack;
 symlist_t patch_functions;
@@ -144,7 +144,7 @@ main(int argc, char *argv[])
 	mmdebug = 0;
 #endif
 	while ((ch = getopt(argc, argv, "d:i:l:n:o:p:r:I:")) != -1) {
-		switch(ch) {
+		switch (ch) {
 		case 'd':
 #if DEBUG
 			if (strcmp(optarg, "s") == 0) {
@@ -301,7 +301,7 @@ main(int argc, char *argv[])
 
 	stop(NULL, 0);
 	/* NOTREACHED */
-	return (0);
+	return 0;
 }
 
 static void
@@ -674,9 +674,9 @@ check_patch(patch_t **start_patch, int start_instr,
 	*start_patch = cur_patch;
 	if (start_instr < *skip_addr)
 		/* Still skipping */
-		return (0);
+		return 0;
 
-	return (1);
+	return 1;
 }
 
 /*
-- 
2.17.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ