]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
clk: wm831x: fix usleep_range with bad range
authorNicholas Mc Guire <hofrat@osadl.org>
Mon, 12 Dec 2016 07:40:09 +0000 (08:40 +0100)
committerStephen Boyd <sboyd@codeaurora.org>
Tue, 10 Jan 2017 00:06:41 +0000 (16:06 -0800)
commited784c532a3d0959db488f40a96c5127f63d42dc
treead2bc1ac6daaee970f48d998a8e0b0df58a3b5e6
parentc77cbdd11b688fa0d1fbb140473dad4bc47cf5e6
clk: wm831x: fix usleep_range with bad range

The delay here is not in atomic context and does not seem critical with
respect to precision, but usleep_range(min,max) with min==max results in
giving the timer subsystem no room to optimize uncritical delays. Fix
this by setting the range to 2000,3000 us.

Fixes: commit f05259a6ffa4 ("clk: wm831x: Add initial WM831x clock driver")
Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/clk-wm831x.c