From: Alexandre Belloni Date: Thu, 23 Feb 2017 16:14:45 +0000 (+0100) Subject: atmel: remove time_t usage X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5c5105666de5ac1eef6c3b0710b88d5536b7f6dd;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git atmel: remove time_t usage last_qual never really holds a time. It only holds jiffies. Make it the same type as jiffies. Signed-off-by: Alexandre Belloni Signed-off-by: Kalle Valo --- diff --git a/drivers/net/wireless/atmel/atmel.c b/drivers/net/wireless/atmel/atmel.c index e12f62356fd1..27b110dc8cc6 100644 --- a/drivers/net/wireless/atmel/atmel.c +++ b/drivers/net/wireless/atmel/atmel.c @@ -513,7 +513,7 @@ struct atmel_private { } station_state; int operating_mode, power_mode; - time_t last_qual; + unsigned long last_qual; int beacons_this_sec; int channel; int reg_domain, config_reg_domain;