]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
clocksource/drivers/tegra: Restore base address before cleanup
authorDmitry Osipenko <digetx@gmail.com>
Tue, 18 Jun 2019 14:03:56 +0000 (17:03 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 26 Jul 2019 07:10:36 +0000 (09:10 +0200)
[ 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 <digetx@gmail.com>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/clocksource/timer-tegra20.c

index fe5cc0963ac910cad17ea6da295e6c0ea314b053..462be34b41c44bfc2b7ec7e0f99c333acc0d81df 100644 (file)
@@ -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;