From: Rashika Kheria Date: Sat, 14 Dec 2013 13:30:06 +0000 (+0530) Subject: drivers: hv: Mark the function hv_synic_free_cpu() as static in hv.c X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8712954d15f194f9639f60e6347797d784c03abb;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git drivers: hv: Mark the function hv_synic_free_cpu() as static in hv.c This patch marks the function hv_synic_free_cpu() as static in hv.c because it is not used outside this file. Thus, it also eliminates the following warning in hv.c: drivers/hv/hv.c:304:6: warning: no previous prototype for ‘hv_synic_free_cpu’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria Reviewed-by: Josh Triplett Signed-off-by: K. Y. Srinivasan Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/hv/hv.c b/drivers/hv/hv.c index f0c5e07c25ec..bcb49502c3bf 100644 --- a/drivers/hv/hv.c +++ b/drivers/hv/hv.c @@ -301,7 +301,7 @@ err: return -ENOMEM; } -void hv_synic_free_cpu(int cpu) +static void hv_synic_free_cpu(int cpu) { kfree(hv_context.event_dpc[cpu]); if (hv_context.synic_event_page[cpu])