diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-06-13 08:17:36 +0000 |
---|---|---|
committer | David S. Miller <davem@conan.davemloft.net> | 2011-06-13 18:32:36 -0400 |
commit | 9281b2a2e2e02ad4bcc2fdd11797709b815d5f8e (patch) | |
tree | e3fb7c8160f40d5226aa2d1c12cbcb182db4765b | |
parent | 1ffde03d2aa112750468cff07efc9e0a504517dd (diff) | |
download | linux-3.10-9281b2a2e2e02ad4bcc2fdd11797709b815d5f8e.tar.gz linux-3.10-9281b2a2e2e02ad4bcc2fdd11797709b815d5f8e.tar.bz2 linux-3.10-9281b2a2e2e02ad4bcc2fdd11797709b815d5f8e.zip |
net/hplance: hplance_init() should be __devinit
WARNING: vmlinux.o(.devinit.text+0x253e): Section mismatch in reference from the function hplance_init_one() to the function .init.text:hplance_init()
The forward declaration had the correct attribute, but the actual function
definition hadn't.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: David S. Miller <davem@conan.davemloft.net>
-rw-r--r-- | drivers/net/hplance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/hplance.c b/drivers/net/hplance.c index b6060f7538d..a900d5bf294 100644 --- a/drivers/net/hplance.c +++ b/drivers/net/hplance.c @@ -135,7 +135,7 @@ static void __devexit hplance_remove_one(struct dio_dev *d) } /* Initialise a single lance board at the given DIO device */ -static void __init hplance_init(struct net_device *dev, struct dio_dev *d) +static void __devinit hplance_init(struct net_device *dev, struct dio_dev *d) { unsigned long va = (d->resource.start + DIO_VIRADDRBASE); struct hplance_private *lp; |