treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project
treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is: GPL-2.0-onlySigned-off-by: Thomas Gleixner <tglx@linutronix.de>Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
show more ...
ARM: milbeaut: fix build with !CONFIG_HOTPLUG_CPUWhen HOTPLUG_CPU is disabled, some fields in the smp operationsare not available or needed:arch/arm/mach-milbeaut/platsmp.c:90:3: error: field de
ARM: milbeaut: fix build with !CONFIG_HOTPLUG_CPUWhen HOTPLUG_CPU is disabled, some fields in the smp operationsare not available or needed:arch/arm/mach-milbeaut/platsmp.c:90:3: error: field designator 'cpu_die' does not refer to any field in type 'struct smp_operations' .cpu_die = m10v_cpu_die, ^arch/arm/mach-milbeaut/platsmp.c:91:3: error: field designator 'cpu_kill' does not refer to any field in type 'struct smp_operations' .cpu_kill = m10v_cpu_kill, ^Hide them in an #ifdef like the other platforms do.Fixes: 9fb29c734f9e ("ARM: milbeaut: Add basic support for Milbeaut m10v SoC")Signed-off-by: Arnd Bergmann <arnd@arndb.de>Signed-off-by: Olof Johansson <olof@lixom.net>
ARM: milbeaut: Add basic support for Milbeaut m10v SoCThis adds the basic M10V SoC support under arch/arm.Since all cores are activated in the custom bootloader before bootinglinux, it is necessa
ARM: milbeaut: Add basic support for Milbeaut m10v SoCThis adds the basic M10V SoC support under arch/arm.Since all cores are activated in the custom bootloader before bootinglinux, it is necessary to wait for the secondary-cores using cpu-enable-method and special sram.Signed-off-by: Sugaya Taichi <sugaya.taichi@socionext.com>Signed-off-by: Arnd Bergmann <arnd@arndb.de>