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

staging: unisys: refactor TASK_MGMT_TYPES

Get rid of the typedef and use enum task_mgmt_types in its place. Clean up
the indentation of the enumeration values and update all use of the name to
the new name.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f43d9b50
......@@ -196,10 +196,12 @@ enum net_types {
#define NIC_VENDOR_ID 0x0008000B
/* various types of scsi task mgmt commands */
typedef enum { TASK_MGMT_ABORT_TASK =
1, TASK_MGMT_BUS_RESET, TASK_MGMT_LUN_RESET,
TASK_MGMT_TARGET_RESET,
} TASK_MGMT_TYPES;
enum task_mgmt_types {
TASK_MGMT_ABORT_TASK = 1,
TASK_MGMT_BUS_RESET,
TASK_MGMT_LUN_RESET,
TASK_MGMT_TARGET_RESET,
};
/* various types of vdisk mgmt commands */
typedef enum { VDISK_MGMT_ACQUIRE = 1, VDISK_MGMT_RELEASE,
......@@ -551,7 +553,7 @@ struct uiscmdrsp_net {
};
struct uiscmdrsp_scsitaskmgmt {
TASK_MGMT_TYPES tasktype;
enum task_mgmt_types tasktype;
/* the type of task */
struct uisscsi_dest vdest;
......
......@@ -738,7 +738,8 @@ forward_vdiskmgmt_command(VDISK_MGMT_TYPES vdiskcmdtype,
/*****************************************************/
static int
forward_taskmgmt_command(TASK_MGMT_TYPES tasktype, struct scsi_device *scsidev)
forward_taskmgmt_command(enum task_mgmt_types tasktype,
struct scsi_device *scsidev)
{
struct uiscmdrsp *cmdrsp;
struct virthba_info *virthbainfo =
......
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