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

cpufreq: unicore2: move cpufreq driver to drivers/cpufreq

This patch moves cpufreq driver of UNICORE-2 architecture to drivers/cpufreq.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Guan Xuetao <gxt@mprc.pku.edu.cn>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Viresh Kumar and committed by
Rafael J. Wysocki
73cc9c8c 7258267e

+2 -2
-1
arch/unicore32/kernel/Makefile
··· 9 9 obj-$(CONFIG_MODULES) += ksyms.o module.o 10 10 obj-$(CONFIG_EARLY_PRINTK) += early_printk.o 11 11 12 - obj-$(CONFIG_CPU_FREQ) += cpu-ucv2.o 13 12 obj-$(CONFIG_UNICORE_FPU_F64) += fpu-ucf64.o 14 13 15 14 # obj-y for architecture PKUnity v3
+1 -1
arch/unicore32/kernel/cpu-ucv2.c drivers/cpufreq/unicore2-cpufreq.c
··· 1 1 /* 2 - * linux/arch/unicore32/kernel/cpu-ucv2.c: clock scaling for the UniCore-II 2 + * clock scaling for the UniCore-II 3 3 * 4 4 * Code specific to PKUnity SoC and UniCore ISA 5 5 *
+1
drivers/cpufreq/Makefile
··· 84 84 obj-$(CONFIG_IA64_ACPI_CPUFREQ) += ia64-acpi-cpufreq.o 85 85 obj-$(CONFIG_LOONGSON2_CPUFREQ) += loongson2_cpufreq.o 86 86 obj-$(CONFIG_SH_CPU_FREQ) += sh-cpufreq.o 87 + obj-$(CONFIG_UNICORE32) += unicore2-cpufreq.o