mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-10 03:20:49 +00:00
Staging: hv: remove VMBUS_CONNECTION typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
5c3e375cf5
commit
662e66b0e4
@ -29,7 +29,7 @@
|
||||
/* Globals */
|
||||
|
||||
|
||||
VMBUS_CONNECTION gVmbusConnection = {
|
||||
struct VMBUS_CONNECTION gVmbusConnection = {
|
||||
.ConnectState = Disconnected,
|
||||
.NextGpadlHandle = 0xE1E10,
|
||||
};
|
||||
|
@ -63,7 +63,7 @@ enum VMBUS_CONNECT_STATE {
|
||||
|
||||
#define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT
|
||||
|
||||
typedef struct _VMBUS_CONNECTION {
|
||||
struct VMBUS_CONNECTION {
|
||||
|
||||
enum VMBUS_CONNECT_STATE ConnectState;
|
||||
|
||||
@ -94,7 +94,7 @@ typedef struct _VMBUS_CONNECTION {
|
||||
spinlock_t channel_lock;
|
||||
|
||||
HANDLE WorkQueue;
|
||||
} VMBUS_CONNECTION;
|
||||
};
|
||||
|
||||
|
||||
typedef struct _VMBUS_MSGINFO {
|
||||
@ -112,7 +112,7 @@ typedef struct _VMBUS_MSGINFO {
|
||||
|
||||
/* Externs */
|
||||
|
||||
extern VMBUS_CONNECTION gVmbusConnection;
|
||||
extern struct VMBUS_CONNECTION gVmbusConnection;
|
||||
|
||||
|
||||
/* General vmbus interface */
|
||||
|
Loading…
Reference in New Issue
Block a user