aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/VmbusPrivate.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-07-14 15:07:21 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:01:45 -0700
commite20f683b6451a39619cd67e20d69597070aa8d17 (patch)
tree16d688431b867e1a94c32149f47831d90197fc85 /drivers/staging/hv/VmbusPrivate.h
parentStaging: hv: remove PVOID typedef (diff)
downloadlinux-dev-e20f683b6451a39619cd67e20d69597070aa8d17.tar.xz
linux-dev-e20f683b6451a39619cd67e20d69597070aa8d17.zip
Staging: hv: remove VOID typedef
The VOID 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>
Diffstat (limited to 'drivers/staging/hv/VmbusPrivate.h')
-rw-r--r--drivers/staging/hv/VmbusPrivate.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/staging/hv/VmbusPrivate.h b/drivers/staging/hv/VmbusPrivate.h
index 1b2a1dc74481..1e54b2463f96 100644
--- a/drivers/staging/hv/VmbusPrivate.h
+++ b/drivers/staging/hv/VmbusPrivate.h
@@ -73,12 +73,12 @@ typedef struct _VMBUS_CONNECTION {
// calls Hv to generate a port event. The other end
// receives the port event and parse the recvInterruptPage
// to see which bit is set
- VOID* InterruptPage;
- VOID* SendInterruptPage;
- VOID* RecvInterruptPage;
+ void * InterruptPage;
+ void * SendInterruptPage;
+ void * RecvInterruptPage;
// 2 pages - 1st page for parent->child notification and 2nd is child->parent notification
- VOID* MonitorPages;
+ void * MonitorPages;
LIST_ENTRY ChannelMsgList;
HANDLE ChannelMsgLock;
@@ -138,12 +138,12 @@ GetChannelFromRelId(
//
static int
VmbusConnect(
- VOID
+ void
);
static int
VmbusDisconnect(
- VOID
+ void
);
static int
@@ -157,9 +157,9 @@ VmbusSetEvent(
UINT32 childRelId
);
-static VOID
+static void
VmbusOnEvents(
- VOID
+ void
);