diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-11-04 09:53:23 -0500 |
---|---|---|
committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-11-06 06:32:18 -0500 |
commit | 42723448b8bacf60c96812196d7725d8d605d0c4 (patch) | |
tree | bd1e1ac9900869139003cfdbae4e88e4b3f22457 /include/net/wpan-phy.h | |
parent | 478e87c23340e88e909aa749f4772838bc96a20b (diff) |
ieee802154: add an mlme_ops call to retrieve PHY object
ops->get_phy should increment reference to wpan-phy. As we return
the external structure, we should do refcounting correctly.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'include/net/wpan-phy.h')
-rw-r--r-- | include/net/wpan-phy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/wpan-phy.h b/include/net/wpan-phy.h index f63537c17363..a65e98509fbc 100644 --- a/include/net/wpan-phy.h +++ b/include/net/wpan-phy.h | |||
@@ -44,6 +44,8 @@ struct wpan_phy { | |||
44 | char priv[0] __attribute__((__aligned__(NETDEV_ALIGN))); | 44 | char priv[0] __attribute__((__aligned__(NETDEV_ALIGN))); |
45 | }; | 45 | }; |
46 | 46 | ||
47 | #define to_phy(_dev) container_of(_dev, struct wpan_phy, dev) | ||
48 | |||
47 | struct wpan_phy *wpan_phy_alloc(size_t priv_size); | 49 | struct wpan_phy *wpan_phy_alloc(size_t priv_size); |
48 | static inline void wpan_phy_set_dev(struct wpan_phy *phy, struct device *dev) | 50 | static inline void wpan_phy_set_dev(struct wpan_phy *phy, struct device *dev) |
49 | { | 51 | { |