Skip to content

Commit 6ca9fed

Browse files
Chen Nimartinkpetersen
authored andcommitted
scsi: qla2xxx: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Fixes: d4523bd ("scsi: qla2xxx: Refactor asynchronous command initialization") Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Link: https://lore.kernel.org/r/20240711005724.2358446-1-nichen@iscas.ac.cn Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
1 parent 22b8d89 commit 6ca9fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/scsi/qla2xxx/qla_init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ qla2x00_async_logout(struct scsi_qla_host *vha, fc_port_t *fcport)
423423
sp->type = SRB_LOGOUT_CMD;
424424
sp->name = "logout";
425425
qla2x00_init_async_sp(sp, qla2x00_get_async_timeout(vha) + 2,
426-
qla2x00_async_logout_sp_done),
426+
qla2x00_async_logout_sp_done);
427427

428428
ql_dbg(ql_dbg_disc, vha, 0x2070,
429429
"Async-logout - hdl=%x loop-id=%x portid=%02x%02x%02x %8phC explicit %d.\n",

0 commit comments

Comments
 (0)