diff options
author | Alexander Aring <alex.aring@gmail.com> | 2015-05-17 21:44:47 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-05-19 11:44:42 +0200 |
commit | 65318680c97cca15e3678148b3a5acaa33e991ec (patch) | |
tree | 6a8a0e994ff76c44d6f0d6859885f6bd468f8f5e /net/mac802154 | |
parent | edea8f7c75ec6c238130bd7e74d9f6f4c26e97b0 (diff) | |
download | linux-65318680c97cca15e3678148b3a5acaa33e991ec.tar.gz linux-65318680c97cca15e3678148b3a5acaa33e991ec.tar.xz |
ieee802154: add iftypes capability
This patch adds capability flags for supported interface types.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154')
-rw-r--r-- | net/mac802154/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/mac802154/main.c b/net/mac802154/main.c index ddcd6ff8d39c..356b346e1ee8 100644 --- a/net/mac802154/main.c +++ b/net/mac802154/main.c @@ -116,6 +116,9 @@ ieee802154_alloc_hw(size_t priv_data_len, const struct ieee802154_ops *ops) phy->supported.max_csma_backoffs = 5; phy->supported.lbt = NL802154_SUPPORTED_BOOL_FALSE; + /* always supported */ + phy->supported.iftypes = BIT(NL802154_IFTYPE_NODE); + return &local->hw; } EXPORT_SYMBOL(ieee802154_alloc_hw); @@ -181,6 +184,9 @@ int ieee802154_register_hw(struct ieee802154_hw *hw) local->phy->supported.max_frame_retries = -1; } + if (hw->flags & IEEE802154_HW_PROMISCUOUS) + local->phy->supported.iftypes |= BIT(NL802154_IFTYPE_MONITOR); + rc = wpan_phy_register(local->phy); if (rc < 0) goto out_wq; |