aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee802154
diff options
context:
space:
mode:
authorDmitry Eremin-Solenikov <dbaryshkov@gmail.com>2009-09-28 11:01:20 -0400
committerDmitry Eremin-Solenikov <dbaryshkov@gmail.com>2009-11-06 06:29:50 -0500
commite9cf356c0c6b975fda84b15a5abdd1db88d74f84 (patch)
tree50b66c4f169939727f7c4592a8a1b44fe13eba79 /net/ieee802154
parenta0b4a738e0e03f5e0d6ca366560f9a48e5adf83a (diff)
wpan-phy: follow usual patter of devices registration
Follow the usual pattern of devices registration by adding new function (wpan_phy_set_dev) that sets child->parent relationship and removing parent argument from wpan_phy_register call. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'net/ieee802154')
-rw-r--r--net/ieee802154/wpan-class.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/net/ieee802154/wpan-class.c b/net/ieee802154/wpan-class.c
index 0c51f85aa591..cd42e88b8397 100644
--- a/net/ieee802154/wpan-class.c
+++ b/net/ieee802154/wpan-class.c
@@ -168,10 +168,8 @@ struct wpan_phy *wpan_phy_alloc(size_t priv_size)
168} 168}
169EXPORT_SYMBOL(wpan_phy_alloc); 169EXPORT_SYMBOL(wpan_phy_alloc);
170 170
171int wpan_phy_register(struct device *parent, struct wpan_phy *phy) 171int wpan_phy_register(struct wpan_phy *phy)
172{ 172{
173 phy->dev.parent = parent;
174
175 return device_add(&phy->dev); 173 return device_add(&phy->dev);
176} 174}
177EXPORT_SYMBOL(wpan_phy_register); 175EXPORT_SYMBOL(wpan_phy_register);