Commit d0ff23c1 authored by Ben Hutchings's avatar Ben Hutchings Committed by Felix Fietkau

mt76: Use the correct hweight8() function

mt76_init_stream_cap() and mt76_get_txpower() call __sw_hweight8()
directly, but that's only defined if CONFIG_GENERIC_HWEIGHT is
enabled.  The function that works on all architectures is hweight8().

Fixes: 551e1ef4 ("mt76: add mt76_init_stream_cap routine")
Fixes: 9313faac ("mt76: move mt76x02_get_txpower to mt76 core")
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 3eeb7c06
...@@ -124,7 +124,7 @@ static void mt76_init_stream_cap(struct mt76_dev *dev, ...@@ -124,7 +124,7 @@ static void mt76_init_stream_cap(struct mt76_dev *dev,
bool vht) bool vht)
{ {
struct ieee80211_sta_ht_cap *ht_cap = &sband->ht_cap; struct ieee80211_sta_ht_cap *ht_cap = &sband->ht_cap;
int i, nstream = __sw_hweight8(dev->antenna_mask); int i, nstream = hweight8(dev->antenna_mask);
struct ieee80211_sta_vht_cap *vht_cap; struct ieee80211_sta_vht_cap *vht_cap;
u16 mcs_map = 0; u16 mcs_map = 0;
...@@ -726,7 +726,7 @@ int mt76_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif, ...@@ -726,7 +726,7 @@ int mt76_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
int *dbm) int *dbm)
{ {
struct mt76_dev *dev = hw->priv; struct mt76_dev *dev = hw->priv;
int n_chains = __sw_hweight8(dev->antenna_mask); int n_chains = hweight8(dev->antenna_mask);
*dbm = dev->txpower_cur / 2; *dbm = dev->txpower_cur / 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment