diff mbox series

scsi: aic7xxx: add missing spaces

Message ID e8abfa9b5579c6ed85ed35662bac290b@208suo.com
State New
Headers show
Series scsi: aic7xxx: add missing spaces | expand

Commit Message

sunran001@208suo.com July 20, 2023, 6:39 a.m. UTC
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@208suo.com>
---
  drivers/scsi/aic7xxx/aicasm/aicasm.c | 8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

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));