From: kbuild test robot Date: Sun, 25 Jan 2015 17:17:54 +0000 (+0800) Subject: Drivers: hv: vmbus: hv_process_timer_expiration() can be static X-Git-Tag: v4.0-rc1~84^2~16 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d8a60e000c951f845d9a5fb3e67853e0e63a5659;p=karo-tx-linux.git Drivers: hv: vmbus: hv_process_timer_expiration() can be static drivers/hv/vmbus_drv.c:582:6: sparse: symbol 'hv_process_timer_expiration' was not declared. Should it be static? Signed-off-by: Fengguang Wu Cc: Vitaly Kuznetsov Cc: "K. Y. Srinivasan" Cc: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c index 7488111ec057..35e3f422ad7b 100644 --- a/drivers/hv/vmbus_drv.c +++ b/drivers/hv/vmbus_drv.c @@ -579,7 +579,7 @@ static void vmbus_onmessage_work(struct work_struct *work) kfree(ctx); } -void hv_process_timer_expiration(struct hv_message *msg, int cpu) +static void hv_process_timer_expiration(struct hv_message *msg, int cpu) { struct clock_event_device *dev = hv_context.clk_evt[cpu];