Commit 3abcbc45 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: hv: remove ULONG and LONG typedefs

The ULONG and LONG 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: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent c4b0bc94
...@@ -62,7 +62,7 @@ typedef struct _STORVSC_DEVICE{ ...@@ -62,7 +62,7 @@ typedef struct _STORVSC_DEVICE{
// Each unique Port/Path/Target represents 1 channel ie scsi controller. In reality, the pathid, targetid is always 0 // Each unique Port/Path/Target represents 1 channel ie scsi controller. In reality, the pathid, targetid is always 0
// and the port is set by us // and the port is set by us
ULONG PortNumber; unsigned int PortNumber;
unsigned char PathId; unsigned char PathId;
unsigned char TargetId; unsigned char TargetId;
......
...@@ -117,7 +117,7 @@ typedef struct _STORVSC_DRIVER_OBJECT { ...@@ -117,7 +117,7 @@ typedef struct _STORVSC_DRIVER_OBJECT {
} STORVSC_DRIVER_OBJECT; } STORVSC_DRIVER_OBJECT;
typedef struct _STORVSC_DEVICE_INFO { typedef struct _STORVSC_DEVICE_INFO {
ULONG PortNumber; unsigned int PortNumber;
unsigned char PathId; unsigned char PathId;
unsigned char TargetId; unsigned char TargetId;
} STORVSC_DEVICE_INFO; } STORVSC_DEVICE_INFO;
......
...@@ -94,16 +94,6 @@ typedef struct _DLIST_ENTRY { ...@@ -94,16 +94,6 @@ typedef struct _DLIST_ENTRY {
struct _DLIST_ENTRY *Blink; struct _DLIST_ENTRY *Blink;
} DLIST_ENTRY; } DLIST_ENTRY;
//
// unsigned types
//
typedef unsigned int ULONG;
//
// signed types
//
typedef int LONG;
// //
// Other types // Other types
// //
......
...@@ -155,7 +155,7 @@ typedef struct ...@@ -155,7 +155,7 @@ typedef struct
unsigned char DataIn; unsigned char DataIn;
unsigned char Reserved; unsigned char Reserved;
ULONG DataTransferLength; unsigned int DataTransferLength;
union union
{ {
...@@ -185,11 +185,11 @@ typedef struct ...@@ -185,11 +185,11 @@ typedef struct
// //
// Note: port number is only really known on the client side // Note: port number is only really known on the client side
// //
ULONG PortNumber; unsigned int PortNumber;
ULONG Flags; unsigned int Flags;
ULONG MaxTransferBytes; unsigned int MaxTransferBytes;
// //
// This id is unique for each channel and will correspond with // This id is unique for each channel and will correspond with
...@@ -249,13 +249,13 @@ typedef struct _VSTOR_PACKET ...@@ -249,13 +249,13 @@ typedef struct _VSTOR_PACKET
// Flags - see below for values // Flags - see below for values
// //
ULONG Flags; unsigned int Flags;
// //
// Status of the request returned from the server side. // Status of the request returned from the server side.
// //
ULONG Status; unsigned int Status;
// //
// Data payload area // Data payload area
......
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