diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-07-14 15:07:21 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-09-15 12:01:45 -0700 |
commit | e20f683b6451a39619cd67e20d69597070aa8d17 (patch) | |
tree | 16d688431b867e1a94c32149f47831d90197fc85 /drivers/staging/hv/ChannelMgmt.c | |
parent | 8282c400144a83f85f637a5251740d670e392e84 (diff) |
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/ChannelMgmt.c')
-rw-r--r-- | drivers/staging/hv/ChannelMgmt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/hv/ChannelMgmt.c b/drivers/staging/hv/ChannelMgmt.c index 73d47ba3bfea..9d8f4ef1e0b9 100644 --- a/drivers/staging/hv/ChannelMgmt.c +++ b/drivers/staging/hv/ChannelMgmt.c @@ -672,7 +672,7 @@ Description: This is invoked in the vmbus worker thread context. --*/ -VOID +void VmbusOnChannelMessage( void *Context ) @@ -722,7 +722,7 @@ Description: --*/ int VmbusChannelRequestOffers( - VOID + void ) { int ret=0; @@ -785,7 +785,7 @@ Description: --*/ void VmbusChannelReleaseUnattachedChannels( - VOID + void ) { LIST_ENTRY *entry; |