Commit 2baf53c6 authored by Arik Nemtsov's avatar Arik Nemtsov Committed by Luciano Coelho

wlcore: hold jiffies in unsigned long

u32 can be incorrect (too small) for some architectures.
Signed-off-by: default avatarArik Nemtsov <arik@wizery.com>
Signed-off-by: default avatarEliad Peller <eliad@wizery.com>
Signed-off-by: default avatarLuciano Coelho <coelho@ti.com>
parent c838478b
......@@ -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;
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment