Commit c15b0f7c authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau
Browse files

mt76: mt76x02: remove useless return in mt76x02_resync_beacon_timer



Remove useless return statment in mt76x02_resync_beacon_timer routine

Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent e5db0ad7
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -189,10 +189,8 @@ mt76x02_resync_beacon_timer(struct mt76x02_dev *dev)
	mt76_rmw_field(dev, MT_BEACON_TIME_CFG,
		       MT_BEACON_TIME_CFG_INTVAL, timer_val);

	if (dev->tbtt_count >= 64) {
	if (dev->tbtt_count >= 64)
		dev->tbtt_count = 0;
		return;
	}
}
EXPORT_SYMBOL_GPL(mt76x02_resync_beacon_timer);