]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: arch_timer: avoid unused function warning
authorArnd Bergmann <arnd@arndb.de>
Tue, 2 Oct 2018 21:11:44 +0000 (23:11 +0200)
committerCatalin Marinas <catalin.marinas@arm.com>
Wed, 3 Oct 2018 10:41:34 +0000 (11:41 +0100)
commit607049333830d57555d5d04834b7e1aa1fe69491
treed187286db5d33504034677660b6eefda6567585d
parent7a8458bc33f3649222ce94c72b8e5631a1082b23
arm64: arch_timer: avoid unused function warning

arm64_1188873_read_cntvct_el0() is protected by the correct
CONFIG_ARM64_ERRATUM_1188873 #ifdef, but the only reference to it is
also inside of an CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND section,
and causes a warning if that is disabled:

drivers/clocksource/arm_arch_timer.c:323:20: error: 'arm64_1188873_read_cntvct_el0' defined but not used [-Werror=unused-function]

Since the erratum requires that we always apply the workaround
in the timer driver, select that symbol as we do for SoC
specific errata.

Fixes: 1a198d78ff4b ("arm64: arch_timer: Add workaround for ARM erratum 1188873")
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/Kconfig