diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-11-12 23:58:23 +0300 |
---|---|---|
committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-11-13 00:07:15 +0300 |
commit | 282a39546f6d213399b325ec830ee37e8d915924 (patch) | |
tree | 84ac4555bce52161bacdff2cb45ef6f37aa3ad5e /net/ieee802154 | |
parent | bb1cafb8fc414d6dbe933f888df6540c2ef02101 (diff) | |
download | linux-3.10-282a39546f6d213399b325ec830ee37e8d915924.tar.gz linux-3.10-282a39546f6d213399b325ec830ee37e8d915924.tar.bz2 linux-3.10-282a39546f6d213399b325ec830ee37e8d915924.zip |
ieee802154: make wpan-phy class registration to subsys_initcall
Move ieee802154 initialisation to subsys_initcall call, so that
wpan-phy class is initialised before all devices (thus saving us from
oops during bootup).
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'net/ieee802154')
-rw-r--r-- | net/ieee802154/wpan-class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee802154/wpan-class.c b/net/ieee802154/wpan-class.c index 38bac70cca1..268691256a6 100644 --- a/net/ieee802154/wpan-class.c +++ b/net/ieee802154/wpan-class.c @@ -205,7 +205,7 @@ err_nl: err: return rc; } -module_init(wpan_phy_class_init); +subsys_initcall(wpan_phy_class_init); static void __exit wpan_phy_class_exit(void) { |