diff options
author | Arnd Bergmann <arnd@arndb.de> | 2020-09-24 16:26:08 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2020-10-30 23:57:05 +0300 |
commit | 6239da297281e2ea6284ce28a92f97ab047aa365 (patch) | |
tree | 15e22c7a7a59c7eeb1122bf3de63499757acda21 /arch/arm/mach-rpc | |
parent | 2b49ddcef2972e89922da9080809a9c1c82f9ecc (diff) | |
download | linux-6239da297281e2ea6284ce28a92f97ab047aa365.tar.xz |
ARM: rpc: use legacy_timer_tick
rpc is the only user of the timer_tick() function now, and can
just call the newly added generic version instead.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-rpc')
-rw-r--r-- | arch/arm/mach-rpc/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rpc/time.c b/arch/arm/mach-rpc/time.c index da85cac761ba..9f8edcfe9357 100644 --- a/arch/arm/mach-rpc/time.c +++ b/arch/arm/mach-rpc/time.c @@ -81,7 +81,7 @@ static irqreturn_t ioc_timer_interrupt(int irq, void *dev_id) { ioc_time += RPC_LATCH; - timer_tick(); + legacy_timer_tick(1); return IRQ_HANDLED; } |