Commit c07036f1 authored by Karim Eshapa's avatar Karim Eshapa Committed by Kalle Valo
Browse files

rsi: rsi_91x_core: Use time_after time comparison



Use time_after kernel macro for time comparison.

Signed-off-by: default avatarKarim Eshapa <karim.eshapa@gmail.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 5578b1ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -306,7 +306,7 @@ void rsi_core_qos_processor(struct rsi_common *common)
		tstamp_2 = jiffies;
		mutex_unlock(&common->tx_rxlock);

		if (tstamp_2 > tstamp_1 + (300 * HZ / 1000))
		if (time_after(tstamp_2, tstamp_1 + (300 * HZ) / 1000))
			schedule();
	}
}