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

Commit 80df9be6 authored by Felix Fietkau's avatar Felix Fietkau Committed by Johannes Berg
Browse files

mac80211: minstrel: fix CCK rate group streams value



Fixes a harmless underflow issue when CCK rates are actively being used

Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 37439f2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@

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