Commit 5c3e375c authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

Staging: hv: remove VMBUS_CONNECT_STATE typedef

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 3fcc523a
...@@ -54,18 +54,18 @@ ...@@ -54,18 +54,18 @@
/* Data types */ /* Data types */
typedef enum { enum VMBUS_CONNECT_STATE {
Disconnected, Disconnected,
Connecting, Connecting,
Connected, Connected,
Disconnecting Disconnecting
} VMBUS_CONNECT_STATE; };
#define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT #define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT
typedef struct _VMBUS_CONNECTION { typedef struct _VMBUS_CONNECTION {
VMBUS_CONNECT_STATE ConnectState; enum VMBUS_CONNECT_STATE ConnectState;
u32 NextGpadlHandle; u32 NextGpadlHandle;
......
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