From: Dmitry Osipenko Date: Tue, 18 Jun 2019 14:03:56 +0000 (+0300) Subject: clocksource/drivers/tegra: Restore base address before cleanup X-Git-Tag: v5.2.3~245 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c21c81b6207767a4d161dbed698ab88550f08014;p=users%2Fdwmw2%2Flinux.git clocksource/drivers/tegra: Restore base address before cleanup [ Upstream commit fc9babc2574691d3bbf0428f007b22261fed55c6 ] We're adjusting the timer's base for each per-CPU timer to point to the actual start of the timer since device-tree defines a compound registers range that includes all of the timers. In this case the original base need to be restore before calling iounmap to unmap the proper address. Signed-off-by: Dmitry Osipenko Acked-by: Jon Hunter Acked-by: Thierry Reding Signed-off-by: Daniel Lezcano Signed-off-by: Sasha Levin --- diff --git a/drivers/clocksource/timer-tegra20.c b/drivers/clocksource/timer-tegra20.c index fe5cc0963ac91..462be34b41c44 100644 --- a/drivers/clocksource/timer-tegra20.c +++ b/drivers/clocksource/timer-tegra20.c @@ -319,6 +319,8 @@ out_irq: irq_dispose_mapping(cpu_to->clkevt.irq); } } + + to->of_base.base = timer_reg_base; out: timer_of_cleanup(to); return ret;