mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
[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 <bunk@stusta.de> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
600991b003
commit
e2fdbc039a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user