aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/include/StorVscApi.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/hv/include/StorVscApi.h')
-rw-r--r--drivers/staging/hv/include/StorVscApi.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/staging/hv/include/StorVscApi.h b/drivers/staging/hv/include/StorVscApi.h
index 7c4dd15d7d1..bd6823e5122 100644
--- a/drivers/staging/hv/include/StorVscApi.h
+++ b/drivers/staging/hv/include/StorVscApi.h
@@ -71,17 +71,17 @@ typedef enum _STORVSC_REQUEST_TYPE{
71 71
72typedef struct _STORVSC_REQUEST { 72typedef struct _STORVSC_REQUEST {
73 STORVSC_REQUEST_TYPE Type; 73 STORVSC_REQUEST_TYPE Type;
74 UINT32 Host; 74 u32 Host;
75 UINT32 Bus; 75 u32 Bus;
76 UINT32 TargetId; 76 u32 TargetId;
77 UINT32 LunId; 77 u32 LunId;
78 u8 * Cdb; 78 u8 * Cdb;
79 UINT32 CdbLen; 79 u32 CdbLen;
80 UINT32 Status; 80 u32 Status;
81 UINT32 BytesXfer; 81 u32 BytesXfer;
82 82
83 UCHAR* SenseBuffer; 83 UCHAR* SenseBuffer;
84 UINT32 SenseBufferSize; 84 u32 SenseBufferSize;
85 85
86 void * Context; 86 void * Context;
87 87
@@ -99,13 +99,13 @@ typedef struct _STORVSC_DRIVER_OBJECT {
99 DRIVER_OBJECT Base; // Must be the first field 99 DRIVER_OBJECT Base; // Must be the first field
100 100
101 // Set by caller (in bytes) 101 // Set by caller (in bytes)
102 UINT32 RingBufferSize; 102 u32 RingBufferSize;
103 103
104 // Allocate this much private extension for each I/O request 104 // Allocate this much private extension for each I/O request
105 UINT32 RequestExtSize; 105 u32 RequestExtSize;
106 106
107 // Maximum # of requests in flight per channel/device 107 // Maximum # of requests in flight per channel/device
108 UINT32 MaxOutstandingRequestsPerChannel; 108 u32 MaxOutstandingRequestsPerChannel;
109 109
110 // Set by the caller to allow us to re-enumerate the bus on the host 110 // Set by the caller to allow us to re-enumerate the bus on the host
111 PFN_ON_HOST_RESCAN OnHostRescan; 111 PFN_ON_HOST_RESCAN OnHostRescan;