mt76: mt76x2: avoid running DPD calibration if tx is blocked

Doing so could lead to hangs

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2019-02-03 13:52:12 +01:00
parent 128b75bf5c
commit 1564fa92fb

View File

@ -241,7 +241,7 @@ void mt76x2_phy_tssi_compensate(struct mt76x02_dev *dev)
t.offset1 = txp.chain[1].tssi_offset; t.offset1 = txp.chain[1].tssi_offset;
mt76x2_mcu_tssi_comp(dev, &t); mt76x2_mcu_tssi_comp(dev, &t);
if (t.pa_mode || dev->cal.dpd_cal_done) if (t.pa_mode || dev->cal.dpd_cal_done || dev->ed_tx_blocked)
return; return;
usleep_range(10000, 20000); usleep_range(10000, 20000);