mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
24a70cf2b2
If SCB exists in select blackfin cpu, developer can change the SCB priority in kernel configuration. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Steven Miao <realmz6@gmail.com>
17 lines
395 B
Makefile
17 lines
395 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_SCB_PRIORITY) += scb-init.o
|
|
obj-$(CONFIG_CPU_VOLTAGE) += dpmc.o
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_BFIN_KERNEL_CLOCK) += clocks-init.o
|