[<prev] [next>] [day] [month] [year] [list]
Message-ID: <e8abfa9b5579c6ed85ed35662bac290b@208suo.com>
Date: Thu, 20 Jul 2023 14:39:01 +0800
From: sunran001@...suo.com
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: add missing spaces
Add missing spaces to clear checkpatch errors.
ERROR: space required before the open parenthesis '('
ERROR: spaces required around that '=' (ctx:VxW)
ERROR: space required after that ',' (ctx:VxV)
Signed-off-by: Ran Sun <sunran001@...suo.com>
---
drivers/scsi/aic7xxx/aicasm/aicasm.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm.c
b/drivers/scsi/aic7xxx/aicasm/aicasm.c
index cd692a4c5f85..a22f0fffc9b9 100644
--- a/drivers/scsi/aic7xxx/aicasm/aicasm.c
+++ b/drivers/scsi/aic7xxx/aicasm/aicasm.c
@@ -396,7 +396,7 @@ output_code()
for (cur_node = SLIST_FIRST(&patch_functions);
cur_node != NULL;
- cur_node = SLIST_NEXT(cur_node,links)) {
+ cur_node = SLIST_NEXT(cur_node, links)) {
fprintf(ofile,
"static %spatch_func_t %spatch%d_func;\n"
"\n"
@@ -424,7 +424,7 @@ output_code()
for (cur_patch = STAILQ_FIRST(&patches);
cur_patch != NULL;
- cur_patch = STAILQ_NEXT(cur_patch,links)) {
+ cur_patch = STAILQ_NEXT(cur_patch, links)) {
fprintf(ofile, "%s\t{ %spatch%d_func, %d, %d, %d }",
cur_patch == STAILQ_FIRST(&patches) ? "" : ",\n",
prefix,
@@ -638,7 +638,7 @@ output_listing(char *ifilename)
instrptr++;
}
/* Dump the remainder of the file */
- while(fgets(buf, sizeof(buf), ifile) != NULL)
+ while (fgets(buf, sizeof(buf), ifile) != NULL)
fprintf(listfile, " %s", buf);
fclose(ifile);
@@ -747,7 +747,7 @@ cs_alloc()
{
critical_section_t *new_cs;
- new_cs= (critical_section_t *)malloc(sizeof(critical_section_t));
+ new_cs = (critical_section_t *)malloc(sizeof(critical_section_t));
if (new_cs == NULL)
stop("Unable to malloc critical_section object", EX_SOFTWARE);
memset(new_cs, 0, sizeof(*new_cs));
Powered by blists - more mailing lists