Skip to content

Commit

Permalink
mac80211: minstrel: fix CCK rate group streams value
Browse files Browse the repository at this point in the history
Fixes a harmless underflow issue when CCK rates are actively being used

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
  • Loading branch information
Felix Fietkau authored and Johannes Berg committed Oct 11, 2018
1 parent 37439f2 commit 80df9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/mac80211/rc80211_minstrel_ht.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@

#define CCK_GROUP(_s) \
[MINSTREL_CCK_GROUP] = { \
.streams = 0, \
.streams = 1, \
.flags = 0, \
.shift = _s, \
.duration = { \
Expand Down

0 comments on commit 80df9be

Please sign in to comment.