Kconfig condition on BCM2835_TIMER (and others)
From: Etienne Buira
Date: Mon Feb 03 2025 - 07:42:35 EST
Hi all,
I want to build a kernel for Raspberry pi 4B, which, according to the
dtb, has a bc2835-system-timer. This device is handled by
drivers/clocksource/bcm2835_timer.c, which is built depending on
CONFIG_BCM2835_TIMER.
However, the config option is guarded by "if COMPILE_TEST" condition.
Shouldn't that condition be ARM64 || COMPILE_TEST (ie be selectable on
arm64 builds)?
Regards.