aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/VmbusPrivate.h
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2009-07-27 16:47:41 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:01:51 -0700
commit5c3e375cf5cf709c95c705d564001c5a0ca3c50e (patch)
tree087ef6efda8922f140d17ab941acb8a47ec9ff80 /drivers/staging/hv/VmbusPrivate.h
parentStaging: hv: remove VMBUS_CHANNEL_PACKET_MULITPAGE_BUFFER typedef (diff)
downloadlinux-dev-5c3e375cf5cf709c95c705d564001c5a0ca3c50e.tar.xz
linux-dev-5c3e375cf5cf709c95c705d564001c5a0ca3c50e.zip
Staging: hv: remove VMBUS_CONNECT_STATE typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/VmbusPrivate.h')
-rw-r--r--drivers/staging/hv/VmbusPrivate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/hv/VmbusPrivate.h b/drivers/staging/hv/VmbusPrivate.h
index ad17088f601e..ec9bfa409550 100644
--- a/drivers/staging/hv/VmbusPrivate.h
+++ b/drivers/staging/hv/VmbusPrivate.h
@@ -54,18 +54,18 @@
/* Data types */
-typedef enum {
+enum VMBUS_CONNECT_STATE {
Disconnected,
Connecting,
Connected,
Disconnecting
-} VMBUS_CONNECT_STATE;
+};
#define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT
typedef struct _VMBUS_CONNECTION {
- VMBUS_CONNECT_STATE ConnectState;
+ enum VMBUS_CONNECT_STATE ConnectState;
u32 NextGpadlHandle;