diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-09-14 18:11:03 +0400 |
---|---|---|
committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-11-06 14:10:32 +0300 |
commit | 69d9ab96f983720b7794e91437bd9c5f83bae9f7 (patch) | |
tree | fbf4312751ac537fa48c5bd0203ed76c6b975044 /include | |
parent | 6a2a2d6bf8581216e08be15fcb563cfd6c430e1e (diff) | |
download | op-kernel-dev-69d9ab96f983720b7794e91437bd9c5f83bae9f7.zip op-kernel-dev-69d9ab96f983720b7794e91437bd9c5f83bae9f7.tar.gz |
wpan-phy: add a helper to put the wpan_phy device
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/wpan-phy.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/wpan-phy.h b/include/net/wpan-phy.h index 547b1e2..5e803a0 100644 --- a/include/net/wpan-phy.h +++ b/include/net/wpan-phy.h @@ -56,6 +56,12 @@ static inline void *wpan_phy_priv(struct wpan_phy *phy) } struct wpan_phy *wpan_phy_find(const char *str); + +static inline void wpan_phy_put(struct wpan_phy *phy) +{ + put_device(&phy->dev); +} + static inline const char *wpan_phy_name(struct wpan_phy *phy) { return dev_name(&phy->dev); |