RE: [PATCH] drivers: hv: Mark the function hv_synic_free_cpu() as static in hv.c

2013-12-14 Thread KY Srinivasan
drivers: hv: Mark the function hv_synic_free_cpu() as > static > in hv.c > > On Sat, Dec 14, 2013 at 07:00:06PM +0530, Rashika Kheria wrote: > > This patch marks the function hv_synic_free_cpu() as static in hv.c > > because it is not used outside this file. > > > &g

Re: [PATCH] drivers: hv: Mark the function hv_synic_free_cpu() as static in hv.c

2013-12-14 Thread Josh Triplett
On Sat, Dec 14, 2013 at 07:00:06PM +0530, Rashika Kheria wrote: > 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

[PATCH] drivers: hv: Mark the function hv_synic_free_cpu() as static in hv.c

2013-12-14 Thread Rashika Kheria
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