aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/wpan-phy.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/wpan-phy.h b/include/net/wpan-phy.h
index 5e803a0e4e72..3367dd95cf85 100644
--- a/include/net/wpan-phy.h
+++ b/include/net/wpan-phy.h
@@ -48,6 +48,8 @@ struct wpan_phy *wpan_phy_alloc(size_t priv_size);
48int wpan_phy_register(struct device *parent, struct wpan_phy *phy); 48int wpan_phy_register(struct device *parent, struct wpan_phy *phy);
49void wpan_phy_unregister(struct wpan_phy *phy); 49void wpan_phy_unregister(struct wpan_phy *phy);
50void wpan_phy_free(struct wpan_phy *phy); 50void wpan_phy_free(struct wpan_phy *phy);
51/* Same semantics as for class_for_each_device */
52int wpan_phy_for_each(int (*fn)(struct wpan_phy *phy, void *data), void *data);
51 53
52static inline void *wpan_phy_priv(struct wpan_phy *phy) 54static inline void *wpan_phy_priv(struct wpan_phy *phy)
53{ 55{