From: Bill Pemberton Date: Tue, 27 Apr 2010 20:23:48 +0000 (-0400) Subject: Staging: hv: declare NetVscOnChannelCallback() static X-Git-Tag: firefly_0821_release~9833^2~2055^2^2~492 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=81b571b77134aed29b9725f161dec6a37b48db68;p=firefly-linux-kernel-4.4.55.git Staging: hv: declare NetVscOnChannelCallback() static NetVscOnChannelCallback() was prototyped as static, but the actual declartion of the function was not static. Signed-off-by: Bill Pemberton Cc: Hank Janssen Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/NetVsc.c b/drivers/staging/hv/NetVsc.c index a48e6376ce21..27516d40b6ed 100644 --- a/drivers/staging/hv/NetVsc.c +++ b/drivers/staging/hv/NetVsc.c @@ -1286,7 +1286,7 @@ static void NetVscOnReceiveCompletion(void *Context) DPRINT_EXIT(NETVSC); } -void NetVscOnChannelCallback(void *Context) +static void NetVscOnChannelCallback(void *Context) { int ret; struct hv_device *device = Context;