Commit b509bf5b authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: hv: remove ULONGLONG and LONGLONG typedefs

The ULONGLONG and LONGLONG 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 2be8093a
...@@ -44,7 +44,7 @@ typedef struct ...@@ -44,7 +44,7 @@ typedef struct
volatile u32 In; // Offset in bytes from the ring base volatile u32 In; // Offset in bytes from the ring base
volatile u32 Out; // Offset in bytes from the ring base volatile u32 Out; // Offset in bytes from the ring base
}; };
volatile LONGLONG InOut; volatile long long InOut;
}; };
// //
......
...@@ -97,15 +97,12 @@ typedef struct _DLIST_ENTRY { ...@@ -97,15 +97,12 @@ typedef struct _DLIST_ENTRY {
// //
// unsigned types // unsigned types
// //
typedef unsigned long long ULONGLONG;
typedef unsigned int ULONG; typedef unsigned int ULONG;
// //
// signed types // signed types
// //
typedef int LONG; typedef int LONG;
typedef long long LONGLONG;
// //
// Other types // Other types
......
...@@ -196,7 +196,7 @@ typedef struct ...@@ -196,7 +196,7 @@ typedef struct
// vendor specific data in the inquirydata // vendor specific data in the inquirydata
// //
ULONGLONG UniqueId; unsigned long long UniqueId;
} VMSTORAGE_CHANNEL_PROPERTIES, *PVMSTORAGE_CHANNEL_PROPERTIES; } VMSTORAGE_CHANNEL_PROPERTIES, *PVMSTORAGE_CHANNEL_PROPERTIES;
......
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