[PATCH 5/8] staging/hv: remove typedef VSTOR_PACKET_OPERATION

Bill Pemberton wfp5p at virginia.edu
Fri Aug 7 19:52:18 UTC 2009


The VSTOR_PACKET_OPERATION typedef is removed.  The enum it
defines is now named hv_vstor_packet_operation

Signed-off-by: Bill Pemberton <wfp5p at virginia.edu>
---
 drivers/staging/hv/include/vstorage.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/hv/include/vstorage.h b/drivers/staging/hv/include/vstorage.h
index 3eca3cf..5b0b858 100644
--- a/drivers/staging/hv/include/vstorage.h
+++ b/drivers/staging/hv/include/vstorage.h
@@ -102,7 +102,7 @@
 /*  Packet structure describing virtual storage requests. */
 
 
-typedef enum
+enum hv_vstor_packet_operation
 {
     VStorOperationCompleteIo            = 1,
     VStorOperationRemoveDevice          = 2,
@@ -116,7 +116,7 @@ typedef enum
     VStorOperationQueryProperties       = 10,
     VStorOperationMaximum               = 10
 
-} VSTOR_PACKET_OPERATION;
+};
 
 
 
@@ -243,7 +243,7 @@ struct hv_vstor_packet
     /* Requested operation type */
 
 
-    VSTOR_PACKET_OPERATION Operation;
+    enum hv_vstor_packet_operation Operation;
 
 
     /*  Flags - see below for values */
-- 
1.6.2.5




More information about the devel mailing list