aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee802154
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-11-01 23:18:37 -0400
committerMarcel Holtmann <marcel@holtmann.org>2014-11-01 23:51:06 -0400
commitea4dcd32a445908c12e04b3b879c57ec5b3e659a (patch)
tree72e734dc39a9e0af8493a263280440db88b72d0a /net/ieee802154
parent1201cd22fd1f4579a888c0f7abc65627d5962f29 (diff)
ieee802154: add helper wpan_phy_to_rdev function
This patch introduce a function to get the cfg802154_registered_device from a wpan_phy. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/ieee802154')
-rw-r--r--net/ieee802154/core.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/ieee802154/core.h b/net/ieee802154/core.h
index 26752ca54b4f..1bc172587157 100644
--- a/net/ieee802154/core.h
+++ b/net/ieee802154/core.h
@@ -12,6 +12,14 @@ struct cfg802154_registered_device {
12 struct wpan_phy wpan_phy __aligned(NETDEV_ALIGN); 12 struct wpan_phy wpan_phy __aligned(NETDEV_ALIGN);
13}; 13};
14 14
15static inline struct cfg802154_registered_device *
16wpan_phy_to_rdev(struct wpan_phy *wpan_phy)
17{
18 BUG_ON(!wpan_phy);
19 return container_of(wpan_phy, struct cfg802154_registered_device,
20 wpan_phy);
21}
22
15/* free object */ 23/* free object */
16void cfg802154_dev_free(struct cfg802154_registered_device *rdev); 24void cfg802154_dev_free(struct cfg802154_registered_device *rdev);
17 25