forked from Minki/linux
c83e9c4873
Without CONFIG_SMP, we get a build failure: In file included from include/linux/byteorder/little_endian.h:5, from arch/arm/include/uapi/asm/byteorder.h:22, from include/asm-generic/bitops/le.h:6, from arch/arm/include/asm/bitops.h:342, from include/linux/bitops.h:18, from include/linux/kernel.h:11, from include/asm-generic/bug.h:18, from arch/arm/include/asm/bug.h:60, from include/linux/bug.h:5, from include/linux/io.h:23, from drivers/soc/renesas/r9a06g032-smp.c:11: drivers/soc/renesas/r9a06g032-smp.c: In function 'r9a06g032_smp_boot_secondary': drivers/soc/renesas/r9a06g032-smp.c:43:21: error: 'secondary_startup' undeclared (first use in this function) writel(__pa_symbol(secondary_startup), cpu_bootaddr); ^~~~~~~~~~~~~~~~~ This makes the compilation of that file conditional on SMP support. It would probably be better for consistency to leave that file in arch/arm/mach-shmobile/, matching what we do for all other smp operations. Fixes: cde4f86f9249 ("arm: shmobile: Add the R9A06G032 SMP enabler driver") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
28 lines
989 B
Makefile
28 lines
989 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Generic, must be first because of soc_device_register()
|
|
obj-$(CONFIG_SOC_RENESAS) += renesas-soc.o
|
|
|
|
# SoC
|
|
obj-$(CONFIG_SYSC_R8A7743) += r8a7743-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A7745) += r8a7745-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A77470) += r8a77470-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A7779) += r8a7779-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A7790) += r8a7790-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A7791) += r8a7791-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A7792) += r8a7792-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A7794) += r8a7794-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A7795) += r8a7795-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A7796) += r8a7796-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A77965) += r8a77965-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A77970) += r8a77970-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A77980) += r8a77980-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A77990) += r8a77990-sysc.o
|
|
obj-$(CONFIG_SYSC_R8A77995) += r8a77995-sysc.o
|
|
ifdef CONFIG_SMP
|
|
obj-$(CONFIG_ARCH_R9A06G032) += r9a06g032-smp.o
|
|
endif
|
|
|
|
# Family
|
|
obj-$(CONFIG_RST_RCAR) += rcar-rst.o
|
|
obj-$(CONFIG_SYSC_RCAR) += rcar-sysc.o
|