2017-05-08 22:34:30

by Karim Eshapa

[permalink] [raw]
Subject: [PATCH] drivers: net: wireless: rsi: rsi_91x_core: Use time_after time comparison

Use time_after kernel macro for time comparison.

Signed-off-by: Karim Eshapa <[email protected]>
---
drivers/net/wireless/rsi/rsi_91x_core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/rsi/rsi_91x_core.c b/drivers/net/wireless/rsi/rsi_91x_core.c
index f3d3995..68f04a7 100644
--- a/drivers/net/wireless/rsi/rsi_91x_core.c
+++ b/drivers/net/wireless/rsi/rsi_91x_core.c
@@ -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();
}
}
--
2.7.4


2017-05-24 13:40:14

by Kalle Valo

[permalink] [raw]
Subject: Re: rsi: rsi_91x_core: Use time_after time comparison

Karim Eshapa <[email protected]> wrote:
> Use time_after kernel macro for time comparison.
>
> Signed-off-by: Karim Eshapa <[email protected]>

Patch applied to wireless-drivers-next.git, thanks.

c07036f18d93 rsi: rsi_91x_core: Use time_after time comparison

--
https://patchwork.kernel.org/patch/9716843/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches