diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2012-10-12 16:22:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-24 18:45:35 -0400 |
commit | 8b5c8b6396bc008fc23ade51a260594d59db4749 (patch) | |
tree | 918d07cdfe6a0215d96767250f7ed83d93e6350b /drivers/hv | |
parent | b533a83008c3fb4983c1213276790cacd39b518f (diff) |
Drivers: hv: Get rid of unnecessary forward declarations
Get rid of unnecessary forward declarations.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Reported-by: Jason Wang <jasowang@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv')
-rw-r--r-- | drivers/hv/channel.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index 406537420fff..1bb1a801a90d 100644 --- a/drivers/hv/channel.c +++ b/drivers/hv/channel.c | |||
@@ -33,14 +33,6 @@ | |||
33 | #define NUM_PAGES_SPANNED(addr, len) \ | 33 | #define NUM_PAGES_SPANNED(addr, len) \ |
34 | ((PAGE_ALIGN(addr + len) >> PAGE_SHIFT) - (addr >> PAGE_SHIFT)) | 34 | ((PAGE_ALIGN(addr + len) >> PAGE_SHIFT) - (addr >> PAGE_SHIFT)) |
35 | 35 | ||
36 | /* Internal routines */ | ||
37 | static int create_gpadl_header( | ||
38 | void *kbuffer, /* must be phys and virt contiguous */ | ||
39 | u32 size, /* page-size multiple */ | ||
40 | struct vmbus_channel_msginfo **msginfo, | ||
41 | u32 *messagecount); | ||
42 | static void vmbus_setevent(struct vmbus_channel *channel); | ||
43 | |||
44 | /* | 36 | /* |
45 | * vmbus_setevent- Trigger an event notification on the specified | 37 | * vmbus_setevent- Trigger an event notification on the specified |
46 | * channel. | 38 | * channel. |