Skip to content

Commit

Permalink
Staging: hv: declare NetVscOnChannelCallback() static
Browse files Browse the repository at this point in the history
NetVscOnChannelCallback() was prototyped as static, but the actual
declartion of the function was not static.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed May 11, 2010
1 parent c6fcf0b commit 81b571b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/hv/NetVsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 81b571b

Please sign in to comment.