Commit 9281b2a2 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by David S. Miller

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: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarDavid S. Miller <davem@conan.davemloft.net>
parent 1ffde03d
...@@ -135,7 +135,7 @@ static void __devexit hplance_remove_one(struct dio_dev *d) ...@@ -135,7 +135,7 @@ static void __devexit hplance_remove_one(struct dio_dev *d)
} }
/* Initialise a single lance board at the given DIO device */ /* 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); unsigned long va = (d->resource.start + DIO_VIRADDRBASE);
struct hplance_private *lp; struct hplance_private *lp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment