mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
d5cc9901ca
This patch moves cpufreq driver of BLACKFIN architecture to drivers/cpufreq. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Steven Miao <realmz6@gmail.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
16 lines
354 B
Makefile
16 lines
354 B
Makefile
#
|
|
# arch/blackfin/mach-common/Makefile
|
|
#
|
|
|
|
obj-y := \
|
|
cache.o cache-c.o entry.o head.o \
|
|
interrupt.o arch_checks.o ints-priority.o
|
|
|
|
obj-$(CONFIG_PM) += pm.o
|
|
ifneq ($(CONFIG_BF60x),y)
|
|
obj-$(CONFIG_PM) += dpmc_modes.o
|
|
endif
|
|
obj-$(CONFIG_CPU_VOLTAGE) += dpmc.o
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_BFIN_KERNEL_CLOCK) += clocks-init.o
|