Skip to content

Commit b9e61f1

Browse files
mickflemmlinvjw
authored andcommitted
ath5k: Include tx ack reporting on hw flags
* Since we report tx acks to the protocol stack, add the needed flag to hw_flags. This way we'll also use the new AP probing mechanism. Signed-off-by: Nick Kossifidis <[email protected]> Tested-by: Sedat Dilek <[email protected]> Signed-off-by: John W. Linville <[email protected]>
1 parent f0e134a commit b9e61f1

File tree

1 file changed

+3
-2
lines changed
  • drivers/net/wireless/ath/ath5k

1 file changed

+3
-2
lines changed

drivers/net/wireless/ath/ath5k/base.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2341,8 +2341,9 @@ ath5k_init_softc(struct ath5k_softc *sc, const struct ath_bus_ops *bus_ops)
23412341
/* Initialize driver private data */
23422342
SET_IEEE80211_DEV(hw, sc->dev);
23432343
hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
2344-
IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
2345-
IEEE80211_HW_SIGNAL_DBM;
2344+
IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
2345+
IEEE80211_HW_SIGNAL_DBM |
2346+
IEEE80211_HW_REPORTS_TX_ACK_STATUS;
23462347

23472348
hw->wiphy->interface_modes =
23482349
BIT(NL80211_IFTYPE_AP) |

0 commit comments

Comments
 (0)