diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-11-17 02:20:51 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-11-17 03:49:16 -0500 |
commit | f3ea5e44231a88eaea69a13410d1b80c19cfa1df (patch) | |
tree | 6cc6980d8ccbb0ef4b91d833d73dbbcc91ee7404 /net/ieee802154/rdev-ops.h | |
parent | 133d3f31729a62908ab98d0b6562cc1a35d3dc39 (diff) |
ieee802154: add new interface command
This patch adds a new nl802154 command for adding a new interface
according to a wpan phy via nl802154.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/ieee802154/rdev-ops.h')
-rw-r--r-- | net/ieee802154/rdev-ops.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/ieee802154/rdev-ops.h b/net/ieee802154/rdev-ops.h index 578bc41e92d3..d3a4f94c5fdc 100644 --- a/net/ieee802154/rdev-ops.h +++ b/net/ieee802154/rdev-ops.h | |||
@@ -21,6 +21,13 @@ rdev_del_virtual_intf_deprecated(struct cfg802154_registered_device *rdev, | |||
21 | } | 21 | } |
22 | 22 | ||
23 | static inline int | 23 | static inline int |
24 | rdev_add_virtual_intf(struct cfg802154_registered_device *rdev, char *name, | ||
25 | enum nl802154_iftype type) | ||
26 | { | ||
27 | return rdev->ops->add_virtual_intf(&rdev->wpan_phy, name, type); | ||
28 | } | ||
29 | |||
30 | static inline int | ||
24 | rdev_set_channel(struct cfg802154_registered_device *rdev, u8 page, u8 channel) | 31 | rdev_set_channel(struct cfg802154_registered_device *rdev, u8 page, u8 channel) |
25 | { | 32 | { |
26 | return rdev->ops->set_channel(&rdev->wpan_phy, page, channel); | 33 | return rdev->ops->set_channel(&rdev->wpan_phy, page, channel); |