Skip to content

Commit 4708c93

Browse files
Chen Nimartinkpetersen
authored andcommitted
scsi: pmcraid: Convert comma to semicolon
Replace comma between expressions with semicolons. Using a ',' in place of a ';' can have unintended side effects. Although that is not the case here, it is seems best to use ';' unless ',' is intended. Found by inspection. No functional change intended. Compile tested only. Signed-off-by: Chen Ni <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Martin K. Petersen <[email protected]>
1 parent a8598ae commit 4708c93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/scsi/pmcraid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1946,7 +1946,7 @@ static void pmcraid_soft_reset(struct pmcraid_cmd *cmd)
19461946
}
19471947

19481948
iowrite32(doorbell, pinstance->int_regs.host_ioa_interrupt_reg);
1949-
ioread32(pinstance->int_regs.host_ioa_interrupt_reg),
1949+
ioread32(pinstance->int_regs.host_ioa_interrupt_reg);
19501950
int_reg = ioread32(pinstance->int_regs.ioa_host_interrupt_reg);
19511951

19521952
pmcraid_info("Waiting for IOA to become operational %x:%x\n",

0 commit comments

Comments
 (0)