summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/tegra3_dvfs.c
diff options
context:
space:
mode:
authorVarun Wadekar <vwadekar@nvidia.com>2012-04-10 17:58:04 +0530
committerVarun Wadekar <vwadekar@nvidia.com>2012-04-10 17:58:04 +0530
commitf70a555dbd2842267b2be9b71198607d126310a0 (patch)
treeee93f7c9145ab59481163dae9bdafd0a05c876bd /arch/arm/mach-tegra/tegra3_dvfs.c
parent9a19f398c8dd152f4386b60362eedb2dbf71cb21 (diff)
ARM: tegra: fuse: do not read cpu/core process ids from fuses
Reading from fuses gives zeros for the cpu/core process ids, so revert to using the previous way instead. Change-Id: I2185cdc4cd2e242cf300da4f0450fbe94acc8959 Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/tegra3_dvfs.c')
-rw-r--r--arch/arm/mach-tegra/tegra3_dvfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/tegra3_dvfs.c b/arch/arm/mach-tegra/tegra3_dvfs.c
index 88a53739995a..6e749eab26b9 100644
--- a/arch/arm/mach-tegra/tegra3_dvfs.c
+++ b/arch/arm/mach-tegra/tegra3_dvfs.c
@@ -591,8 +591,8 @@ void __init tegra3_init_dvfs(void)
{
int cpu_speedo_id = tegra_cpu_speedo_id();
int soc_speedo_id = tegra_soc_speedo_id();
- int cpu_process_id = tegra_cpu_process_id;
- int core_process_id = tegra_core_process_id;
+ int cpu_process_id = tegra_cpu_process_id();
+ int core_process_id = tegra_core_process_id();
int i;
int core_nominal_mv_index;