Re: [PATCH v3] clocksource: arch_timer: Allow the device tree to specify uninitialized CNTVOFF

From: Arnd Bergmann
Date: Tue Oct 07 2014 - 03:41:51 EST


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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/