mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
ath9k_hw: fix a sign error in the IQ calibration code
Signed-off-by: Felix Fietkau <nbd@openwrt.org> Cc: stable@kernel.org Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
601e0cb165
commit
23399016d9
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ static void ar9002_hw_iqcalibrate(struct ath_hw *ah, u8 numChains)
|
||||||
if (qCoff > 15)
|
if (qCoff > 15)
|
||||||
qCoff = 15;
|
qCoff = 15;
|
||||||
else if (qCoff <= -16)
|
else if (qCoff <= -16)
|
||||||
qCoff = 16;
|
qCoff = -16;
|
||||||
|
|
||||||
ath_print(common, ATH_DBG_CALIBRATE,
|
ath_print(common, ATH_DBG_CALIBRATE,
|
||||||
"Chn %d : iCoff = 0x%x qCoff = 0x%x\n",
|
"Chn %d : iCoff = 0x%x qCoff = 0x%x\n",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue