On 12/19/2013 05:36 AM, Paul Walmsley wrote: > Add a function to test the internal Tegra114 chip fuse that indicates > whether the VDD_CPU lower voltage limit for the fast CPU cluster > should be overridden. > diff --git a/arch/arm/mach-tegra/fuse.c b/arch/arm/mach-tegra/fuse.c > +bool tegra114_fuse_read_min_vdd_cpu_override(void) > +{ > + if (tegra_chip_id != TEGRA114) > + return -EINVAL; -EINVAL doesn't translate to "bool" too well... > + > + return tegra_spare_fuse(TEGRA114_SPARE_FUSE_VDD_CPU_OVERRIDE) ? true : > + false; In the spirit of my comment on patch 1 and consistency, instead perhaps just read this fuse at boot, and assign it to a global? BTW, why the need for "? true : false" - doesn't the compiler do the conversion correctly itself. Perhaps it's to avoid a performance warning, in which case a leading !! seems to be more popular. -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html