drivers/ieee802154: KW41Z drivers is missing hw ACK caps

ACK frames are handled on hardware level, so let's expose this
capability in order to avoid L2 waiting for these.

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2018-05-03 15:43:22 +02:00 committed by Jukka Rissanen
commit 50990cdfaf

View file

@ -345,7 +345,8 @@ static enum ieee802154_hw_caps kw41z_get_capabilities(struct device *dev)
{ {
return IEEE802154_HW_FCS | return IEEE802154_HW_FCS |
IEEE802154_HW_2_4_GHZ | IEEE802154_HW_2_4_GHZ |
IEEE802154_HW_FILTER; IEEE802154_HW_FILTER |
IEEE802154_HW_TX_RX_ACK;
} }
static int kw41z_cca(struct device *dev) static int kw41z_cca(struct device *dev)