On 12/19/2013 05:36 AM, Paul Walmsley wrote: > From: Danny Huang <dahuang@xxxxxxxxxx> > > Add functions to read the speedo and process id of both the CPU and the SoC. > There might be some drivers need the information as well. > diff --git a/arch/arm/mach-tegra/fuse.c b/arch/arm/mach-tegra/fuse.c > +int tegra_get_cpu_process_id(void) > +{ > + return tegra_cpu_process_id; > +} > +EXPORT_SYMBOL(tegra_get_cpu_process_id); > + > +int tegra_get_cpu_speedo_id(void) > +{ > + if (tegra_chip_id == TEGRA20) > + return -EINVAL; > + > + return tegra_cpu_speedo_id; > +} Olof specifically went through the code and removed such functions in the past. He argued that consumers of this data should just read those tegra_cpu_process_id/... variables directly instead. -- 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