staging: unisys: Fix open parenthesis alignment issues in virthba.c
This patch fixes a couple checkpatch checks where alignment of the parameters did not match the open parenthesis of the function. Signed-off-by: Ken Depro <kenneth.depro@unisys.com> Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fb649950f9
commit
a57fc10e8d
1 changed files with 4 additions and 2 deletions
|
@ -1295,7 +1295,8 @@ drain_queue(struct virthba_info *virthbainfo, struct chaninfo *dc,
|
||||||
* deletion
|
* deletion
|
||||||
*/
|
*/
|
||||||
scsicmd = del_scsipending_entry(virthbainfo,
|
scsicmd = del_scsipending_entry(virthbainfo,
|
||||||
(uintptr_t)cmdrsp->scsi.scsicmd);
|
(uintptr_t)
|
||||||
|
cmdrsp->scsi.scsicmd);
|
||||||
if (!scsicmd)
|
if (!scsicmd)
|
||||||
break;
|
break;
|
||||||
/* complete the orig cmd */
|
/* complete the orig cmd */
|
||||||
|
@ -1314,7 +1315,8 @@ drain_queue(struct virthba_info *virthbainfo, struct chaninfo *dc,
|
||||||
process_disk_notify(shost, cmdrsp);
|
process_disk_notify(shost, cmdrsp);
|
||||||
} else if (cmdrsp->cmdtype == CMD_VDISKMGMT_TYPE) {
|
} else if (cmdrsp->cmdtype == CMD_VDISKMGMT_TYPE) {
|
||||||
if (!del_scsipending_entry(virthbainfo,
|
if (!del_scsipending_entry(virthbainfo,
|
||||||
(uintptr_t)cmdrsp->vdiskmgmt.scsicmd))
|
(uintptr_t)
|
||||||
|
cmdrsp->vdiskmgmt.scsicmd))
|
||||||
break;
|
break;
|
||||||
complete_vdiskmgmt_command(cmdrsp);
|
complete_vdiskmgmt_command(cmdrsp);
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Reference in a new issue