staging: unisys: fix CamelCase in uiscmdrsp_disknotify
authorBenjamin Romer <benjamin.romer@unisys.com>
Thu, 23 Oct 2014 18:31:03 +0000 (14:31 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Oct 2014 02:33:14 +0000 (10:33 +0800)
Fix the CamelCase member of this structure:

vHba => v_hba

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/common-spar/include/channels/iochannel.h
drivers/staging/unisys/virthba/virthba.c

index 2f0cf5f341a65d5b7230340fbc0f52012f057965..b4da34758b3db10a09ac9f4e264bf934cc3ec58d 100644 (file)
@@ -594,7 +594,7 @@ struct uiscmdrsp_scsitaskmgmt {
 /* Note that the vHba pointer is not used by the Client/Guest side. */
 struct uiscmdrsp_disknotify {
        u8 add;         /* 0-remove, 1-add */
-       void *vHba;             /* Pointer to vhba_info for channel info to
+       void *v_hba;            /* Pointer to vhba_info for channel info to
                                 * route msg */
        u32 channel, id, lun;   /* SCSI Path of Disk to added or removed */
 };
index a3ea0871664ba8e80b212cdab8c39025162bf7f7..ee1be5a83e39529a4213f7fa7d059d100e32866a 100644 (file)
@@ -1310,7 +1310,7 @@ drain_queue(struct virthba_info *virthbainfo, struct chaninfo *dc,
                         * a Client/Guest Partition. Let's be
                         * safe and set it to NULL now.  Do
                         * not use it here! */
-                       cmdrsp->disknotify.vHba = NULL;
+                       cmdrsp->disknotify.v_hba = NULL;
                        process_disk_notify(shost, cmdrsp);
                } else if (cmdrsp->cmdtype == CMD_VDISKMGMT_TYPE) {
                        if (!del_scsipending_entry(virthbainfo,
This page took 0.02615 seconds and 5 git commands to generate.