Message ID | 20200121100150.31660-1-geert+renesas@glider.be (mailing list archive) |
---|---|
State | Mainlined |
Commit | feefd39ab6bb6a746364ef00c39cce2e33a0fde7 |
Headers | show |
Series | arm64: bcm2835: Drop select of nonexistent HAVE_ARM_ARCH_TIMER | expand |
On Tue Jan 21, 2020 at 11:01 AM, Geert Uytterhoeven wrote: > Unlike on arm32, the HAVE_ARM_ARCH_TIMER config symbol does not exist on > arm64. > > Note that the toplevel ARM64 symbol always selects ARM_ARCH_TIMER, so > support for it is always included. > > Fixes: 628d30d1ccb897fe ("arm64: Add platform selection for BCM2835.") > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> > --- Reviewed-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de> Thanks, Nicolas
On Tue, 21 Jan 2020 11:01:50 +0100, Geert Uytterhoeven <geert+renesas@glider.be> wrote: > Unlike on arm32, the HAVE_ARM_ARCH_TIMER config symbol does not exist on > arm64. > > Note that the toplevel ARM64 symbol always selects ARM_ARCH_TIMER, so > support for it is always included. > > Fixes: 628d30d1ccb897fe ("arm64: Add platform selection for BCM2835.") > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> > --- Applied to soc-arm64/next, thanks! -- Florian
diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms index b2b504ea6fd69495..ad4335122e70a3b7 100644 --- a/arch/arm64/Kconfig.platforms +++ b/arch/arm64/Kconfig.platforms @@ -39,7 +39,6 @@ config ARCH_BCM2835 select ARM_AMBA select ARM_GIC select ARM_TIMER_SP804 - select HAVE_ARM_ARCH_TIMER help This enables support for the Broadcom BCM2837 and BCM2711 SoC. These SoCs are used in the Raspberry Pi 3 and 4 devices.
Unlike on arm32, the HAVE_ARM_ARCH_TIMER config symbol does not exist on arm64. Note that the toplevel ARM64 symbol always selects ARM_ARCH_TIMER, so support for it is always included. Fixes: 628d30d1ccb897fe ("arm64: Add platform selection for BCM2835.") Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- Manually reverting f072181e6403b0fe ("kconfig: drop the ""trying to assign nonexistent symbol" warning") does not help. arch/arm64/Kconfig.platforms | 1 - 1 file changed, 1 deletion(-)