Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8a1d919 authored by Jon Schindler's avatar Jon Schindler Committed by David S. Miller
Browse files

drivers/net/ac3200.c: replace init_module&cleanup_module with module_init&module_exit



Replace init_module and cleanup_module with static functions and
module_init/module_exit.

Signed-off-by: default avatarJon Schindler <jkschind@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3cfbb677
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
@@ -369,7 +369,7 @@ MODULE_PARM_DESC(mem, "Memory base address(es)");
MODULE_DESCRIPTION("Ansel AC3200 EISA ethernet driver");
MODULE_DESCRIPTION("Ansel AC3200 EISA ethernet driver");
MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");


int __init init_module(void)
static int __init ac3200_module_init(void)
{
{
	struct net_device *dev;
	struct net_device *dev;
	int this_dev, found = 0;
	int this_dev, found = 0;
@@ -404,8 +404,7 @@ static void cleanup_card(struct net_device *dev)
	iounmap(ei_status.mem);
	iounmap(ei_status.mem);
}
}


void __exit
static void __exit ac3200_module_exit(void)
cleanup_module(void)
{
{
	int this_dev;
	int this_dev;


@@ -418,4 +417,6 @@ cleanup_module(void)
		}
		}
	}
	}
}
}
module_init(ac3200_module_init);
module_exit(ac3200_module_exit);
#endif /* MODULE */
#endif /* MODULE */