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

Commit 9afa27ce authored by Alexander Shiyan's avatar Alexander Shiyan Committed by Daniel Lezcano
Browse files

clocksource: nspire: Fix compiler warning



CC      drivers/clocksource/zevio-timer.o
drivers/clocksource/zevio-timer.c:215:1: warning: comparison of distinct pointer types lacks a cast [enabled by default]

Signed-off-by: default avatarAlexander Shiyan <shc_work@mail.ru>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent 82a56194
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -212,4 +212,9 @@ static int __init zevio_timer_add(struct device_node *node)
	return ret;
}

CLOCKSOURCE_OF_DECLARE(zevio_timer, "lsi,zevio-timer", zevio_timer_add);
static void __init zevio_timer_init(struct device_node *node)
{
	BUG_ON(zevio_timer_add(node));
}

CLOCKSOURCE_OF_DECLARE(zevio_timer, "lsi,zevio-timer", zevio_timer_init);