[PATCH] smctr section fix
WARNING: drivers/net/tokenring/smctr.o - Section mismatch: reference to .init.text: from .text between 'init_module' (at offset 0x2ba0) and 'smctr_reset_adapter' WARNING: drivers/net/tokenring/smctr.o - Section mismatch: reference to .init.text:smctr_probe from .text between 'init_module' (at offset 0x2bf4) and 'smctr_reset_adapter' Cc: Jeff Garzik <jeff@garzik.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
6d2cdb4fd1
commit
daca7cd761
1 changed files with 2 additions and 3 deletions
|
@ -5666,7 +5666,7 @@ module_param_array(io, int, NULL, 0);
|
||||||
module_param_array(irq, int, NULL, 0);
|
module_param_array(irq, int, NULL, 0);
|
||||||
module_param(ringspeed, int, 0);
|
module_param(ringspeed, int, 0);
|
||||||
|
|
||||||
static struct net_device *setup_card(int n)
|
static struct net_device * __init setup_card(int n)
|
||||||
{
|
{
|
||||||
struct net_device *dev = alloc_trdev(sizeof(struct net_local));
|
struct net_device *dev = alloc_trdev(sizeof(struct net_local));
|
||||||
int err;
|
int err;
|
||||||
|
@ -5696,9 +5696,8 @@ static struct net_device *setup_card(int n)
|
||||||
free_netdev(dev);
|
free_netdev(dev);
|
||||||
return ERR_PTR(err);
|
return ERR_PTR(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int init_module(void)
|
int __init init_module(void)
|
||||||
{
|
{
|
||||||
int i, found = 0;
|
int i, found = 0;
|
||||||
struct net_device *dev;
|
struct net_device *dev;
|
||||||
|
|
Loading…
Reference in a new issue