summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/include/StorVscApi.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-07-14 15:09:36 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:01:46 -0700
commit4d64311468a90d4ab1e83c62d63b27da598b73ea (patch)
tree958df2af78911f7f6d66040f7fbcd965a1cbd4b6 /drivers/staging/hv/include/StorVscApi.h
parent5cd508bc3ac032343e6853cd5712ac392942fb2c (diff)
downloadop-kernel-dev-4d64311468a90d4ab1e83c62d63b27da598b73ea.zip
op-kernel-dev-4d64311468a90d4ab1e83c62d63b27da598b73ea.tar.gz
Staging: hv: remove UINT32 and INT32 typedefs
The UINT32 and INT32 typedefs are now removed from the Hyper-V driver code. Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
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 7c4dd15..bd6823e 100644
--- a/drivers/staging/hv/include/StorVscApi.h
+++ b/drivers/staging/hv/include/StorVscApi.h
@@ -71,17 +71,17 @@ typedef enum _STORVSC_REQUEST_TYPE{
typedef struct _STORVSC_REQUEST {
STORVSC_REQUEST_TYPE Type;
- UINT32 Host;
- UINT32 Bus;
- UINT32 TargetId;
- UINT32 LunId;
+ u32 Host;
+ u32 Bus;
+ u32 TargetId;
+ u32 LunId;
u8 * Cdb;
- UINT32 CdbLen;
- UINT32 Status;
- UINT32 BytesXfer;
+ u32 CdbLen;
+ u32 Status;
+ u32 BytesXfer;
UCHAR* SenseBuffer;
- UINT32 SenseBufferSize;
+ u32 SenseBufferSize;
void * Context;
@@ -99,13 +99,13 @@ typedef struct _STORVSC_DRIVER_OBJECT {
DRIVER_OBJECT Base; // Must be the first field
// Set by caller (in bytes)
- UINT32 RingBufferSize;
+ u32 RingBufferSize;
// Allocate this much private extension for each I/O request
- UINT32 RequestExtSize;
+ u32 RequestExtSize;
// Maximum # of requests in flight per channel/device
- UINT32 MaxOutstandingRequestsPerChannel;
+ u32 MaxOutstandingRequestsPerChannel;
// Set by the caller to allow us to re-enumerate the bus on the host
PFN_ON_HOST_RESCAN OnHostRescan;
OpenPOWER on IntegriCloud