[PATCH v3] clocksource: arch_timer: Allow the device tree to specify uninitialized CNTVOFF
Arnd Bergmann
arnd at arndb.de
Tue Oct 7 00:40:57 PDT 2014
On Monday 06 October 2014 23:37:32 Sonny Rao wrote:
>
> +#ifdef CONFIG_ARM
> + /*
> + * If we cannot rely on firmware initializing the CNTVOFF then
> + * we should use the physical timers instead.
> + */
> + if (of_property_read_bool(np, "arm,cntvoff-not-fw-configured"))
> + arch_timer_use_virtual = false;
> +#endif
> +
>
Sorry for the nitpicking, but can this please use
if (IS_ENABLED(CONFIG_ARM))
to avoid the ugly #ifdef?
Arnd
More information about the linux-arm-kernel
mailing list