diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-11 17:40:01 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-11 17:51:22 +0200 |
commit | 9f3e28e375a8d509a27efe89f3c8ea2a15aeb524 (patch) | |
tree | 5dcbc6bdacb87b58baacebcd5782acae5371012f /include | |
parent | hv: hyperv.h: remove unneeded forward declarations of structures (diff) | |
download | linux-9f3e28e375a8d509a27efe89f3c8ea2a15aeb524.tar.xz linux-9f3e28e375a8d509a27efe89f3c8ea2a15aeb524.zip |
hv: remove free_channel() from hyperv.h
This function is only used in the file it is declared in
(channel_mgmt.c) so make it static and remove it from the hyperv.h file.
Cc: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/hyperv.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index ae865a11ad46..240e1141cbbd 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -606,8 +606,6 @@ struct vmbus_channel { void *channel_callback_context; }; -void free_channel(struct vmbus_channel *channel); - void vmbus_onmessage(void *context); int vmbus_request_offers(void); |