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

Commit 76ac9ed6 authored by Rajkumar Manoharan's avatar Rajkumar Manoharan Committed by John W. Linville
Browse files

ath9k_hw: Fix pll2_divfrac for AR953x

parent af2db444
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -791,7 +791,8 @@ static void ath9k_hw_init_pll(struct ath_hw *ah,
				refdiv = 5;
			} else {
				pll2_divint = 0x11;
				pll2_divfrac = 0x26666;
				pll2_divfrac =
					AR_SREV_9531(ah) ? 0x26665 : 0x26666;
				refdiv = 1;
			}
		}