mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
cpufreq: ia64: move cpufreq driver to drivers/cpufreq
This patch moves cpufreq driver of IA64 architecture to drivers/cpufreq. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Tony Luck <tony.luck@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
8e8aa95a2b
commit
ab423e435f
@ -591,9 +591,9 @@ source "kernel/power/Kconfig"
|
|||||||
source "drivers/acpi/Kconfig"
|
source "drivers/acpi/Kconfig"
|
||||||
|
|
||||||
if PM
|
if PM
|
||||||
|
menu "CPU Frequency scaling"
|
||||||
source "arch/ia64/kernel/cpufreq/Kconfig"
|
source "drivers/cpufreq/Kconfig"
|
||||||
|
endmenu
|
||||||
endif
|
endif
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -23,7 +23,6 @@ obj-$(CONFIG_SMP) += smp.o smpboot.o
|
|||||||
obj-$(CONFIG_NUMA) += numa.o
|
obj-$(CONFIG_NUMA) += numa.o
|
||||||
obj-$(CONFIG_PERFMON) += perfmon_default_smpl.o
|
obj-$(CONFIG_PERFMON) += perfmon_default_smpl.o
|
||||||
obj-$(CONFIG_IA64_CYCLONE) += cyclone.o
|
obj-$(CONFIG_IA64_CYCLONE) += cyclone.o
|
||||||
obj-$(CONFIG_CPU_FREQ) += cpufreq/
|
|
||||||
obj-$(CONFIG_IA64_MCA_RECOVERY) += mca_recovery.o
|
obj-$(CONFIG_IA64_MCA_RECOVERY) += mca_recovery.o
|
||||||
obj-$(CONFIG_KPROBES) += kprobes.o jprobes.o
|
obj-$(CONFIG_KPROBES) += kprobes.o jprobes.o
|
||||||
obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o
|
obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
#
|
|
||||||
# CPU Frequency scaling
|
|
||||||
#
|
|
||||||
|
|
||||||
menu "CPU Frequency scaling"
|
|
||||||
|
|
||||||
source "drivers/cpufreq/Kconfig"
|
|
||||||
|
|
||||||
if CPU_FREQ
|
|
||||||
|
|
||||||
comment "CPUFreq processor drivers"
|
|
||||||
|
|
||||||
config IA64_ACPI_CPUFREQ
|
|
||||||
tristate "ACPI Processor P-States driver"
|
|
||||||
select CPU_FREQ_TABLE
|
|
||||||
depends on ACPI_PROCESSOR
|
|
||||||
help
|
|
||||||
This driver adds a CPUFreq driver which utilizes the ACPI
|
|
||||||
Processor Performance States.
|
|
||||||
|
|
||||||
For details, take a look at <file:Documentation/cpu-freq/>.
|
|
||||||
|
|
||||||
If in doubt, say N.
|
|
||||||
|
|
||||||
endif # CPU_FREQ
|
|
||||||
|
|
||||||
endmenu
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
|||||||
obj-$(CONFIG_IA64_ACPI_CPUFREQ) += acpi-cpufreq.o
|
|
||||||
|
|
@ -218,6 +218,23 @@ config AVR32_AT32AP_CPUFREQ
|
|||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
menu "CPUFreq processor drivers"
|
||||||
|
depends on IA64
|
||||||
|
|
||||||
|
config IA64_ACPI_CPUFREQ
|
||||||
|
tristate "ACPI Processor P-States driver"
|
||||||
|
select CPU_FREQ_TABLE
|
||||||
|
depends on ACPI_PROCESSOR
|
||||||
|
help
|
||||||
|
This driver adds a CPUFreq driver which utilizes the ACPI
|
||||||
|
Processor Performance States.
|
||||||
|
|
||||||
|
For details, take a look at <file:Documentation/cpu-freq/>.
|
||||||
|
|
||||||
|
If in doubt, say N.
|
||||||
|
|
||||||
|
endmenu
|
||||||
|
|
||||||
menu "PowerPC CPU frequency scaling drivers"
|
menu "PowerPC CPU frequency scaling drivers"
|
||||||
depends on PPC32 || PPC64
|
depends on PPC32 || PPC64
|
||||||
source "drivers/cpufreq/Kconfig.powerpc"
|
source "drivers/cpufreq/Kconfig.powerpc"
|
||||||
|
@ -81,3 +81,4 @@ obj-$(CONFIG_AVR32_AT32AP_CPUFREQ) += at32ap-cpufreq.o
|
|||||||
obj-$(CONFIG_BLACKFIN) += blackfin-cpufreq.o
|
obj-$(CONFIG_BLACKFIN) += blackfin-cpufreq.o
|
||||||
obj-$(CONFIG_CRIS_MACH_ARTPEC3) += cris-artpec3-cpufreq.o
|
obj-$(CONFIG_CRIS_MACH_ARTPEC3) += cris-artpec3-cpufreq.o
|
||||||
obj-$(CONFIG_ETRAXFS) += cris-etraxfs-cpufreq.o
|
obj-$(CONFIG_ETRAXFS) += cris-etraxfs-cpufreq.o
|
||||||
|
obj-$(CONFIG_IA64_ACPI_CPUFREQ) += ia64-acpi-cpufreq.o
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* arch/ia64/kernel/cpufreq/acpi-cpufreq.c
|
|
||||||
* This file provides the ACPI based P-state support. This
|
* This file provides the ACPI based P-state support. This
|
||||||
* module works with generic cpufreq infrastructure. Most of
|
* module works with generic cpufreq infrastructure. Most of
|
||||||
* the code is based on i386 version
|
* the code is based on i386 version
|
Loading…
x
Reference in New Issue
Block a user