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

staging: unisys: clean up GUESTPART_MSG_TYPE typedef

Switch GUESTPART_MSG_TYPE over to enum guestpart_msg_type.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0f431ff7
...@@ -197,7 +197,6 @@ struct network_policy { ...@@ -197,7 +197,6 @@ struct network_policy {
* code that processes the ControlVm channel messages. * code that processes the ControlVm channel messages.
*/ */
enum iopart_msg_type { enum iopart_msg_type {
IOPART_ADD_VNIC, IOPART_ADD_VNIC,
IOPART_DEL_VNIC, IOPART_DEL_VNIC,
...@@ -327,7 +326,7 @@ struct io_msgs { ...@@ -327,7 +326,7 @@ struct io_msgs {
* the ControlVm channel messages. * the ControlVm channel messages.
*/ */
typedef enum { enum guestpart_msg_type {
GUEST_ADD_VBUS, GUEST_ADD_VBUS,
GUEST_ADD_VHBA, GUEST_ADD_VHBA,
GUEST_ADD_VNIC, GUEST_ADD_VNIC,
...@@ -342,7 +341,7 @@ typedef enum { ...@@ -342,7 +341,7 @@ typedef enum {
GUEST_PAUSE_VNIC, GUEST_PAUSE_VNIC,
GUEST_RESUME_VHBA, GUEST_RESUME_VHBA,
GUEST_RESUME_VNIC GUEST_RESUME_VNIC
} GUESTPART_MSG_TYPE; };
struct add_vbus_guestpart { struct add_vbus_guestpart {
void __iomem *chanptr; /* pointer to data channel for bus - void __iomem *chanptr; /* pointer to data channel for bus -
...@@ -392,7 +391,7 @@ struct init_chipset_guestpart { ...@@ -392,7 +391,7 @@ struct init_chipset_guestpart {
}; };
struct guest_msgs { struct guest_msgs {
GUESTPART_MSG_TYPE msgtype; enum guestpart_msg_type msgtype;
/* additional params needed by messages */ /* additional params needed by messages */
union { union {
......
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