From: Dmitry Eremin-Solenikov Date: Mon, 14 Sep 2009 14:11:03 +0000 (+0400) Subject: wpan-phy: add a helper to put the wpan_phy device X-Git-Tag: v2.6.33-rc1~388^2~486^2~16 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=69d9ab96f983720b7794e91437bd9c5f83bae9f7;p=~emulex%2Finfiniband.git wpan-phy: add a helper to put the wpan_phy device Signed-off-by: Dmitry Eremin-Solenikov --- diff --git a/include/net/wpan-phy.h b/include/net/wpan-phy.h index 547b1e271ac..5e803a0e4e7 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);