cpufreq: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p 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:
parent
f55c9c2627
commit
ce2650d40d
2 changed files with 2 additions and 2 deletions
|
@ -946,7 +946,7 @@ static struct cpufreq_driver longhaul_driver = {
|
|||
.target = longhaul_target,
|
||||
.get = longhaul_get,
|
||||
.init = longhaul_cpu_init,
|
||||
.exit = __devexit_p(longhaul_cpu_exit),
|
||||
.exit = longhaul_cpu_exit,
|
||||
.name = "longhaul",
|
||||
.owner = THIS_MODULE,
|
||||
.attr = longhaul_attr,
|
||||
|
|
|
@ -1242,7 +1242,7 @@ static struct cpufreq_driver cpufreq_amd64_driver = {
|
|||
.target = powernowk8_target,
|
||||
.bios_limit = acpi_processor_get_bios_limit,
|
||||
.init = powernowk8_cpu_init,
|
||||
.exit = __devexit_p(powernowk8_cpu_exit),
|
||||
.exit = powernowk8_cpu_exit,
|
||||
.get = powernowk8_get,
|
||||
.name = "powernow-k8",
|
||||
.owner = THIS_MODULE,
|
||||
|
|
Loading…
Reference in a new issue