Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -110,7 +110,7 @@ int wl1271_ps_elp_wakeup(struct wl1271 *wl)
	DECLARE_COMPLETION_ONSTACK(compl);
	DECLARE_COMPLETION_ONSTACK(compl);
	unsigned long flags;
	unsigned long flags;
	int ret;
	int ret;
	u32 start_time = jiffies;
	unsigned long start_time = jiffies;
	bool pending = false;
	bool pending = false;


	/*
	/*