mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
cf8d943260
The irq_panic function is only used when CONFIG_DEBUG_ICACHE_CHECK is enabled, so move the conditional build to the Makefile rather than wrapping all of the contents of the file. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16 lines
427 B
Makefile
16 lines
427 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_BFIN_ICACHE_LOCK) += lock.o
|
|
obj-$(CONFIG_PM) += pm.o dpmc_modes.o
|
|
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
|
|
obj-$(CONFIG_DEBUG_ICACHE_CHECK) += irqpanic.o
|