staging: unisys: Fix open parenthesis alignment issues in virthba.c
authorKen Depro <kenneth.depro@unisys.com>
Tue, 20 Jan 2015 15:01:15 +0000 (10:01 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Jan 2015 11:59:17 +0000 (19:59 +0800)
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>
drivers/staging/unisys/virthba/virthba.c

index 9a6e67d1c27d02e6822296247f1e426920463554..ee11d895df23511542e88e017442b1c5560401b7 100644 (file)
@@ -1295,7 +1295,8 @@ drain_queue(struct virthba_info *virthbainfo, struct chaninfo *dc,
                         * deletion
                         */
                        scsicmd = del_scsipending_entry(virthbainfo,
-                                       (uintptr_t)cmdrsp->scsi.scsicmd);
+                                                       (uintptr_t)
+                                                        cmdrsp->scsi.scsicmd);
                        if (!scsicmd)
                                break;
                        /* complete the orig cmd */
@@ -1314,7 +1315,8 @@ drain_queue(struct virthba_info *virthbainfo, struct chaninfo *dc,
                        process_disk_notify(shost, cmdrsp);
                } else if (cmdrsp->cmdtype == CMD_VDISKMGMT_TYPE) {
                        if (!del_scsipending_entry(virthbainfo,
-                                  (uintptr_t)cmdrsp->vdiskmgmt.scsicmd))
+                                                  (uintptr_t)
+                                                   cmdrsp->vdiskmgmt.scsicmd))
                                break;
                        complete_vdiskmgmt_command(cmdrsp);
                } else