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: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f43d9b50cd
commit
63f06ba1ee
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user