Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9f3e28e3 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

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: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 2726f95e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ static void release_channel(struct work_struct *work)
/*
 * free_channel - Release the resources used by the vmbus channel object
 */
void free_channel(struct vmbus_channel *channel)
static void free_channel(struct vmbus_channel *channel)
{

	/*
+0 −2
Original line number Diff line number Diff line
@@ -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);