Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 471a24c0 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by David S. Miller
Browse files

[WAN]: fix section mismatch warning in sbni



In latest -mm sbni gives following warning: WARNING:
drivers/net/wan/sbni.o - Section mismatch: reference to \ .init.data:
from .text between 'init_module' (at offset 0x14ef) and \
'cleanup_module'

The warning is caused by init_module() calling a function declared
__init.  Declare init_module() __init too to fix warning.

Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e3968fc0
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -1495,8 +1495,7 @@ module_param(skip_pci_probe, bool, 0);
MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");




int
int __init init_module( void )
init_module( void )
{
{
	struct net_device  *dev;
	struct net_device  *dev;
	int err;
	int err;