Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f819c0e7 authored by Simon Wunderlich's avatar Simon Wunderlich Committed by John W. Linville
Browse files

ath9k: report 5/10 MHz channels

parent 0671894f
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -852,6 +852,17 @@ static int ath9k_process_rate(struct ath_common *common,
	band = hw->conf.chandef.chan->band;
	sband = hw->wiphy->bands[band];

	switch (hw->conf.chandef.width) {
	case NL80211_CHAN_WIDTH_5:
		rxs->flag |= RX_FLAG_5MHZ;
		break;
	case NL80211_CHAN_WIDTH_10:
		rxs->flag |= RX_FLAG_10MHZ;
		break;
	default:
		break;
	}

	if (rx_stats->rs_rate & 0x80) {
		/* HT rate */
		rxs->flag |= RX_FLAG_HT;