mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
93f89519fd
Add bf60x cpu pm callbacks and change blackfin pm framework to support bf60x. Signed-off-by: Steven Miao <realmz6@gmail.com> Signed-off-by: Bob Liu <lliubbo@gmail.com>
17 lines
393 B
Makefile
17 lines
393 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_FREQ) += cpufreq.o
|
|
obj-$(CONFIG_CPU_VOLTAGE) += dpmc.o
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_BFIN_KERNEL_CLOCK) += clocks-init.o
|