| Submitter | Hannes Eder |
|---|---|
| Date | Dec. 22, 2008, 7:14 p.m. |
| Message ID | <20081222191458.11807.57800.stgit@vmbox.hanneseder.net> |
| Download | mbox | patch |
| Permalink | /patch/15269/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Hannes Eder <hannes@hanneseder.net> Date: Mon, 22 Dec 2008 20:14:58 +0100 > Fix this sparse warning: > > drivers/net/ne.c:932:24: warning: non-ANSI function declaration of function 'init_module' > > Signed-off-by: Hannes Eder <hannes@hanneseder.net> Applied. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/net/ne.c b/drivers/net/ne.c index cb02698..5c3e242 100644 --- a/drivers/net/ne.c +++ b/drivers/net/ne.c @@ -929,7 +929,7 @@ static void __init ne_add_devices(void) } #ifdef MODULE -int __init init_module() +int __init init_module(void) { int retval; ne_add_devices();
Fix this sparse warning: drivers/net/ne.c:932:24: warning: non-ANSI function declaration of function 'init_module' Signed-off-by: Hannes Eder <hannes@hanneseder.net> --- drivers/net/ne.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html