dect
/
linux-2.6
Archived
13
0
Fork 0

cpufreq: remove use of __devexit

CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Bill Pemberton 2012-11-21 01:18:49 +01:00 committed by Rafael J. Wysocki
parent c5fa4ab5ab
commit c0e61cb151
2 changed files with 2 additions and 2 deletions

View File

@ -930,7 +930,7 @@ static int __cpuinit longhaul_cpu_init(struct cpufreq_policy *policy)
return 0;
}
static int __devexit longhaul_cpu_exit(struct cpufreq_policy *policy)
static int longhaul_cpu_exit(struct cpufreq_policy *policy)
{
cpufreq_frequency_table_put_attr(policy->cpu);
return 0;

View File

@ -1186,7 +1186,7 @@ err_out:
return -ENODEV;
}
static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol)
static int powernowk8_cpu_exit(struct cpufreq_policy *pol)
{
struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);