Commit c8cf5d07 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: refactor enum VDISK_MGMT_TYPES

Get rid of the typedef and use enum vdisk_mgmt_types instead. Reformat the
enumeration names and update any references to use the enum directly.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 63f06ba1
......@@ -204,8 +204,10 @@ enum task_mgmt_types {
};
/* various types of vdisk mgmt commands */
typedef enum { VDISK_MGMT_ACQUIRE = 1, VDISK_MGMT_RELEASE,
} VDISK_MGMT_TYPES;
enum vdisk_mgmt_types {
VDISK_MGMT_ACQUIRE = 1,
VDISK_MGMT_RELEASE,
};
/* this is used in the vdest field */
#define VDEST_ALL 0xFFFF
......@@ -600,7 +602,7 @@ struct uiscmdrsp_disknotify {
/* The following is used by virthba/vSCSI to send the Acquire/Release commands
* to the IOVM. */
struct uiscmdrsp_vdiskmgmt {
VDISK_MGMT_TYPES vdisktype;
enum vdisk_mgmt_types vdisktype;
/* the type of task */
struct uisscsi_dest vdest;
......
......@@ -674,7 +674,7 @@ virthba_remove(struct virtpci_dev *virtpcidev)
}
static int
forward_vdiskmgmt_command(VDISK_MGMT_TYPES vdiskcmdtype,
forward_vdiskmgmt_command(enum vdisk_mgmt_types vdiskcmdtype,
struct Scsi_Host *scsihost,
struct uisscsi_dest *vdest)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment