Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 1 | #ifndef __CFG802154_RDEV_OPS |
| 2 | #define __CFG802154_RDEV_OPS |
| 3 | |
| 4 | #include <net/cfg802154.h> |
| 5 | |
| 6 | #include "core.h" |
| 7 | |
| 8 | static inline struct net_device * |
| 9 | rdev_add_virtual_intf_deprecated(struct cfg802154_registered_device *rdev, |
| 10 | const char *name, int type) |
| 11 | { |
| 12 | return rdev->ops->add_virtual_intf_deprecated(&rdev->wpan_phy, name, |
| 13 | type); |
| 14 | } |
| 15 | |
| 16 | static inline void |
| 17 | rdev_del_virtual_intf_deprecated(struct cfg802154_registered_device *rdev, |
| 18 | struct net_device *dev) |
| 19 | { |
| 20 | rdev->ops->del_virtual_intf_deprecated(&rdev->wpan_phy, dev); |
| 21 | } |
| 22 | |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame^] | 23 | static inline int |
| 24 | rdev_set_channel(struct cfg802154_registered_device *rdev, const u8 page, |
| 25 | const u8 channel) |
| 26 | { |
| 27 | return rdev->ops->set_channel(&rdev->wpan_phy, page, channel); |
| 28 | } |
| 29 | |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 30 | #endif /* __CFG802154_RDEV_OPS */ |