diff options
author | Diwakar Tundlam <dtundlam@nvidia.com> | 2011-08-11 00:38:23 -0700 |
---|---|---|
committer | Rohan Somvanshi <rsomvanshi@nvidia.com> | 2011-09-06 02:59:20 -0700 |
commit | 3a85d02f0d61f8d94b864716ce7f3f12e78d62a0 (patch) | |
tree | f8fe7d787a28f2208078452d7b8f7d3caaa462d2 /arch/arm/mach-tegra | |
parent | 532b8db1aa4faff01c3c770c8c25c63cdead0243 (diff) |
ARM: Tegra: dvfs: pick speedo_id = 1 if speedo_value < min
Bug 860231
Change-Id: If7d12ad3f1e37583fda68f7d6f266d7a5765d663
Reviewed-on: http://git-master/r/46599
Reviewed-by: Rohan Somvanshi <rsomvanshi@nvidia.com>
Tested-by: Rohan Somvanshi <rsomvanshi@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r-- | arch/arm/mach-tegra/tegra3_speedo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/tegra3_speedo.c b/arch/arm/mach-tegra/tegra3_speedo.c index 252bfd884cbe..cded2254e3df 100644 --- a/arch/arm/mach-tegra/tegra3_speedo.c +++ b/arch/arm/mach-tegra/tegra3_speedo.c @@ -252,7 +252,7 @@ void tegra_init_speedo_data(void) pr_err("****************************************************"); cpu_process_id = INVALID_PROCESS_ID; - cpu_speedo_id = 0; + cpu_speedo_id = 1; } for (iv = 0; iv < CORE_PROCESS_CORNERS_NUM; iv++) { @@ -272,7 +272,7 @@ void tegra_init_speedo_data(void) pr_err("****************************************************"); core_process_id = INVALID_PROCESS_ID; - soc_speedo_id = 0; + soc_speedo_id = 1; } pr_info("Tegra3: CPU Speedo ID %d, Soc Speedo ID %d", |