aboutsummaryrefslogtreecommitdiff
path: root/drivers/cpufreq
diff options
context:
space:
mode:
authorDmitry Osipenko <digetx@gmail.com>2018-05-18 23:06:37 +0300
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2018-05-21 13:44:24 +0200
commitf53908680ce4550a28810e967a0dd77176372d6d (patch)
tree6cb0896b5f4bc6443ae335e4a0a8e3ca914befad /drivers/cpufreq
parent64cd64e72bc26e60457094b93d93eaeee08ddd47 (diff)
cpufreq: tegra20: Remove unneeded check in tegra_cpu_init
Remove checking of the CPU number for consistency as it won't ever fail unless there is a severe bug in the cpufreq core. Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r--drivers/cpufreq/tegra20-cpufreq.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/cpufreq/tegra20-cpufreq.c b/drivers/cpufreq/tegra20-cpufreq.c
index ea186d3f0faf..df25e350c8e6 100644
--- a/drivers/cpufreq/tegra20-cpufreq.c
+++ b/drivers/cpufreq/tegra20-cpufreq.c
@@ -35,8 +35,6 @@ static struct cpufreq_frequency_table freq_table[] = {
{ .frequency = CPUFREQ_TABLE_END },
};
-#define NUM_CPUS 2
-
static struct clk *cpu_clk;
static struct clk *pll_x_clk;
static struct clk *pll_p_clk;
@@ -122,9 +120,6 @@ static int tegra_cpu_init(struct cpufreq_policy *policy)
{
int ret;
- if (policy->cpu >= NUM_CPUS)
- return -EINVAL;
-
clk_prepare_enable(cpu_clk);
/* FIXME: what's the actual transition time? */