Lines Matching refs:wpan_phy

27 struct wpan_phy;
41 struct net_device * (*add_virtual_intf_deprecated)(struct wpan_phy *wpan_phy,
45 void (*del_virtual_intf_deprecated)(struct wpan_phy *wpan_phy,
47 int (*suspend)(struct wpan_phy *wpan_phy);
48 int (*resume)(struct wpan_phy *wpan_phy);
49 int (*add_virtual_intf)(struct wpan_phy *wpan_phy,
54 int (*del_virtual_intf)(struct wpan_phy *wpan_phy,
56 int (*set_channel)(struct wpan_phy *wpan_phy, u8 page, u8 channel);
57 int (*set_cca_mode)(struct wpan_phy *wpan_phy,
59 int (*set_cca_ed_level)(struct wpan_phy *wpan_phy, s32 ed_level);
60 int (*set_tx_power)(struct wpan_phy *wpan_phy, s32 power);
61 int (*set_pan_id)(struct wpan_phy *wpan_phy,
63 int (*set_short_addr)(struct wpan_phy *wpan_phy,
65 int (*set_backoff_exponent)(struct wpan_phy *wpan_phy,
68 int (*set_max_csma_backoffs)(struct wpan_phy *wpan_phy,
71 int (*set_max_frame_retries)(struct wpan_phy *wpan_phy,
74 int (*set_lbt_mode)(struct wpan_phy *wpan_phy,
76 int (*set_ackreq_default)(struct wpan_phy *wpan_phy,
79 void (*get_llsec_table)(struct wpan_phy *wpan_phy,
82 void (*lock_llsec_table)(struct wpan_phy *wpan_phy,
84 void (*unlock_llsec_table)(struct wpan_phy *wpan_phy,
89 int (*get_llsec_params)(struct wpan_phy *wpan_phy,
92 int (*set_llsec_params)(struct wpan_phy *wpan_phy,
96 int (*add_llsec_key)(struct wpan_phy *wpan_phy,
100 int (*del_llsec_key)(struct wpan_phy *wpan_phy,
103 int (*add_seclevel)(struct wpan_phy *wpan_phy,
106 int (*del_seclevel)(struct wpan_phy *wpan_phy,
109 int (*add_device)(struct wpan_phy *wpan_phy,
112 int (*del_device)(struct wpan_phy *wpan_phy,
114 int (*add_devkey)(struct wpan_phy *wpan_phy,
118 int (*del_devkey)(struct wpan_phy *wpan_phy,
184 struct wpan_phy { struct
322 struct wpan_phy *wpan_phy; member
359 #define to_phy(_dev) container_of(_dev, struct wpan_phy, dev)
372 struct wpan_phy *
374 static inline void wpan_phy_set_dev(struct wpan_phy *phy, struct device *dev) in wpan_phy_set_dev()
379 int wpan_phy_register(struct wpan_phy *phy);
380 void wpan_phy_unregister(struct wpan_phy *phy);
381 void wpan_phy_free(struct wpan_phy *phy);
383 int wpan_phy_for_each(int (*fn)(struct wpan_phy *phy, void *data), void *data);
385 static inline void *wpan_phy_priv(struct wpan_phy *phy) in wpan_phy_priv()
391 struct wpan_phy *wpan_phy_find(const char *str);
393 static inline void wpan_phy_put(struct wpan_phy *phy) in wpan_phy_put()
398 static inline const char *wpan_phy_name(struct wpan_phy *phy) in wpan_phy_name()