mirror of https://gitee.com/openkylin/linux.git
wlcore: hold jiffies in unsigned long
u32 can be incorrect (too small) for some architectures. Signed-off-by: Arik Nemtsov <arik@wizery.com> Signed-off-by: Eliad Peller <eliad@wizery.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
This commit is contained in:
parent
c838478b7b
commit
2baf53c6e3
|
@ -110,7 +110,7 @@ int wl1271_ps_elp_wakeup(struct wl1271 *wl)
|
|||
DECLARE_COMPLETION_ONSTACK(compl);
|
||||
unsigned long flags;
|
||||
int ret;
|
||||
u32 start_time = jiffies;
|
||||
unsigned long start_time = jiffies;
|
||||
bool pending = false;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue