The USHORT typedef is 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>
typedef unsigned long long ULONGLONG;
typedef unsigned int ULONG;
-typedef unsigned short USHORT;
//
// signed types
typedef struct
{
- USHORT Length;
+ unsigned short Length;
unsigned char SrbStatus;
unsigned char ScsiStatus;
typedef struct
{
- USHORT ProtocolVersion;
+ unsigned short ProtocolVersion;
unsigned char PathId;
unsigned char TargetId;
// Major (MSW) and minor (LSW) version numbers.
//
- USHORT MajorMinor;
+ unsigned short MajorMinor;
//
// indicate incompatibility--but it does indicate mismatched builds.
//
- USHORT Revision;
+ unsigned short Revision;
} VMSTORAGE_PROTOCOL_VERSION, *PVMSTORAGE_PROTOCOL_VERSION;