Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

cpufreq: qoriq: rename the driver

This driver works on all QorIQ platforms which include
ARM-based cores and PPC-based cores.
Rename it in order to represent better.

Signed-off-by: Tang Yuantian <Yuantian.Tang@freescale.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Tang Yuantian and committed by
Rafael J. Wysocki
2f249358 a4f20742

+9 -10
+8
drivers/cpufreq/Kconfig
··· 293 293 If unsure, say N. 294 294 endif 295 295 296 + config QORIQ_CPUFREQ 297 + tristate "CPU frequency scaling driver for Freescale QorIQ SoCs" 298 + depends on OF && COMMON_CLK && (PPC_E500MC || ARM) 299 + select CLK_QORIQ 300 + help 301 + This adds the CPUFreq driver support for Freescale QorIQ SoCs 302 + which are capable of changing the CPU's frequency dynamically. 303 + 296 304 endif 297 305 endmenu
-9
drivers/cpufreq/Kconfig.powerpc
··· 23 23 This adds support for frequency switching on Maple 970FX 24 24 Evaluation Board and compatible boards (IBM JS2x blades). 25 25 26 - config PPC_CORENET_CPUFREQ 27 - tristate "CPU frequency scaling driver for Freescale E500MC SoCs" 28 - depends on PPC_E500MC && OF && COMMON_CLK 29 - select CLK_QORIQ 30 - help 31 - This adds the CPUFreq driver support for Freescale e500mc, 32 - e5500 and e6500 series SoCs which are capable of changing 33 - the CPU's frequency dynamically. 34 - 35 26 config CPU_FREQ_PMAC 36 27 bool "Support for Apple PowerBooks" 37 28 depends on ADB_PMU && PPC32
+1 -1
drivers/cpufreq/Makefile
··· 85 85 ppc-cbe-cpufreq-y += ppc_cbe_cpufreq_pervasive.o ppc_cbe_cpufreq.o 86 86 obj-$(CONFIG_CPU_FREQ_CBE_PMI) += ppc_cbe_cpufreq_pmi.o 87 87 obj-$(CONFIG_CPU_FREQ_MAPLE) += maple-cpufreq.o 88 - obj-$(CONFIG_PPC_CORENET_CPUFREQ) += ppc-corenet-cpufreq.o 88 + obj-$(CONFIG_QORIQ_CPUFREQ) += qoriq-cpufreq.o 89 89 obj-$(CONFIG_CPU_FREQ_PMAC) += pmac32-cpufreq.o 90 90 obj-$(CONFIG_CPU_FREQ_PMAC64) += pmac64-cpufreq.o 91 91 obj-$(CONFIG_PPC_PASEMI_CPUFREQ) += pasemi-cpufreq.o
drivers/cpufreq/ppc-corenet-cpufreq.c drivers/cpufreq/qoriq-cpufreq.c