aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clocksource
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2017-06-20 07:51:11 +0200
committerDaniel Lezcano <daniel.lezcano@linaro.org>2017-06-26 18:32:04 +0200
commit22ece4e3df6335e691207de1198a609e761b8640 (patch)
treef5fd74578f3ab5f4b573d37e4fe1474d1acbc4f6 /drivers/clocksource
parentRevert "ktime: Simplify ktime_compare implementation" (diff)
downloadwireguard-linux-22ece4e3df6335e691207de1198a609e761b8640.tar.xz
wireguard-linux-22ece4e3df6335e691207de1198a609e761b8640.zip
clocksource/drivers/timer-of: Fix invalid iomap check
A typo in the code checks the return value of iomap against !NULL and, thus, fails everytime the mapping succeed. Fix this by inverting the condition in the check. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r--drivers/clocksource/timer-of.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/timer-of.c b/drivers/clocksource/timer-of.c
index 64b1c2081a67..f6e7491c873c 100644
--- a/drivers/clocksource/timer-of.c
+++ b/drivers/clocksource/timer-of.c
@@ -120,7 +120,7 @@ static __init int timer_base_init(struct device_node *np,
const char *name = of_base->name ? of_base->name : np->full_name;
of_base->base = of_io_request_and_map(np, of_base->index, name);
- if (of_base->base) {
+ if (!of_base->base) {
pr_err("Failed to iomap (%s)\n", name);
return -ENXIO;
}