From: Adrian Bunk Date: Mon, 26 Jun 2006 10:31:46 +0000 (+0200) Subject: [PATCH] drivers/net/hamradio/dmascc.c: fix section mismatch X-Git-Tag: v2.6.18-rc1~457^2~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e2fdbc039aeac4ce614ee29f4b14bcef5ba000dd;p=karo-tx-linux.git [PATCH] drivers/net/hamradio/dmascc.c: fix section mismatch dev_setup() is using the __initdata variables ax25_broadcast and ax25_test. Since the only caller of dev_setup() (setup_adapter()) is already __init, the solution is to make dev_setup() __init, too. Signed-off-by: Adrian Bunk Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/hamradio/dmascc.c b/drivers/net/hamradio/dmascc.c index 0d5fccc984bb..c9a46b89942a 100644 --- a/drivers/net/hamradio/dmascc.c +++ b/drivers/net/hamradio/dmascc.c @@ -436,7 +436,7 @@ static int __init dmascc_init(void) module_init(dmascc_init); module_exit(dmascc_exit); -static void dev_setup(struct net_device *dev) +static void __init dev_setup(struct net_device *dev) { dev->type = ARPHRD_AX25; dev->hard_header_len = AX25_MAX_HEADER_LEN;