1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-02-20 02:14:43 +02:00

[ar71xx] micrel phy driver: change initcall level if compiled into the kernel

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14628 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2009-02-22 20:52:12 +00:00
parent 5dc7b2bc72
commit adaf802bbc

View File

@ -1,7 +1,7 @@
/* /*
* Driver for Micrel/Kendin PHYs * Driver for Micrel/Kendin PHYs
* *
* Copyright (c) 2008 Gabor Juhos <juhosg@openwrt.org> * Copyright (c) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
* Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
* *
* This program is free software; you can redistribute it and/or modify it * This program is free software; you can redistribute it and/or modify it
@ -61,11 +61,7 @@ static struct phy_driver ksz8041_phy_driver = {
static int __init micrel_phy_init(void) static int __init micrel_phy_init(void)
{ {
int ret; return phy_driver_register(&ksz8041_phy_driver);
ret = phy_driver_register(&ksz8041_phy_driver);
return ret;
} }
static void __exit micrel_phy_exit(void) static void __exit micrel_phy_exit(void)
@ -73,8 +69,12 @@ static void __exit micrel_phy_exit(void)
phy_driver_unregister(&ksz8041_phy_driver); phy_driver_unregister(&ksz8041_phy_driver);
} }
#ifdef MODULE
module_init(micrel_phy_init); module_init(micrel_phy_init);
module_exit(micrel_phy_exit); module_exit(micrel_phy_exit);
#else
subsys_initcall(micrel_phy_init);
#endif
MODULE_DESCRIPTION("Micrel/Kendin PHY driver"); MODULE_DESCRIPTION("Micrel/Kendin PHY driver");
MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>"); MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");