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

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

ath9k: fix spectral scan endless mode on AR9002



There was a copy+paste error in ar9002 for the endless spectral mode,
fix that.

Signed-off-by: default avatarSimon Wunderlich <siwu@hrz.tu-chemnitz.de>
Signed-off-by: default avatarMathias Kretschmer <mathias.kretschmer@fokus.fraunhofer.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 59015278
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -581,7 +581,7 @@ void ar9002_hw_spectral_scan_config(struct ath_hw *ah,
	 */
	count = param->count;
	if (param->endless)
		count = 0;
		count = 0x80;
	else if (count & 0x80)
		count = 0x7f;