Commit 44305569 authored by Roman Kisel's avatar Roman Kisel Committed by Wei Liu

Drivers: hv: vmbus: Fix the misplaced function description

When hv_synic_disable_regs was introduced, it received the description
of hv_synic_cleanup. Fix that.

Fixes: dba61cda ("Drivers: hv: vmbus: Break out synic enable and disable operations")
Signed-off-by: default avatarRoman Kisel <romank@linux.microsoft.com>
Reviewed-by: default avatarMichael Kelley <mhkelley@outlook.com>
Link: https://lore.kernel.org/r/20240801212235.352220-1-romank@linux.microsoft.comSigned-off-by: default avatarWei Liu <wei.liu@kernel.org>
Message-ID: <20240801212235.352220-1-romank@linux.microsoft.com>
parent c6e2b45a
...@@ -342,9 +342,6 @@ int hv_synic_init(unsigned int cpu) ...@@ -342,9 +342,6 @@ int hv_synic_init(unsigned int cpu)
return 0; return 0;
} }
/*
* hv_synic_cleanup - Cleanup routine for hv_synic_init().
*/
void hv_synic_disable_regs(unsigned int cpu) void hv_synic_disable_regs(unsigned int cpu)
{ {
struct hv_per_cpu_context *hv_cpu = struct hv_per_cpu_context *hv_cpu =
...@@ -436,6 +433,9 @@ static bool hv_synic_event_pending(void) ...@@ -436,6 +433,9 @@ static bool hv_synic_event_pending(void)
return pending; return pending;
} }
/*
* hv_synic_cleanup - Cleanup routine for hv_synic_init().
*/
int hv_synic_cleanup(unsigned int cpu) int hv_synic_cleanup(unsigned int cpu)
{ {
struct vmbus_channel *channel, *sc; struct vmbus_channel *channel, *sc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment