diff options
author | Rusty Russell <[email protected]> | 2012-03-29 15:38:30 +1030 |
---|---|---|
committer | Rusty Russell <[email protected]> | 2012-03-29 15:38:30 +1030 |
commit | 88d8cd52bc9dd7696617b31ea91263d6c47f22e4 (patch) | |
tree | 076007985f591ee6b622e3a4335ee84f53984b7e | |
parent | 0b5f9c005def154f9c21f9be0223b65b50d54368 (diff) |
drivers/cpufreq/db8500-cpufreq: remove references to cpu_*_map.
This has been obsolescent for a while; time for the final push.
Signed-off-by: Rusty Russell <[email protected]>
Cc: Dave Jones <[email protected]>
Cc: [email protected]
Cc: Sundar Iyer <[email protected]>
Cc: Martin Persson <[email protected]>
Cc: Jonas Aaberg <[email protected]>
-rw-r--r-- | drivers/cpufreq/db8500-cpufreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/db8500-cpufreq.c b/drivers/cpufreq/db8500-cpufreq.c index a22ffa5bff9f..0bf1b8910eeb 100644 --- a/drivers/cpufreq/db8500-cpufreq.c +++ b/drivers/cpufreq/db8500-cpufreq.c @@ -142,7 +142,7 @@ static int __cpuinit db8500_cpufreq_init(struct cpufreq_policy *policy) policy->cpuinfo.transition_latency = 20 * 1000; /* in ns */ /* policy sharing between dual CPUs */ - cpumask_copy(policy->cpus, &cpu_present_map); + cpumask_copy(policy->cpus, cpu_present_mask); policy->shared_type = CPUFREQ_SHARED_TYPE_ALL; |