mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 08:50:54 +07:00
caf86a73ea
The hotplug code contains only a single function, which is an SMP function. Move that to platsmp.c where all other SMP runctions reside. That allows removing hotplug.c and declaring the cpu_die function static. Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
10 lines
225 B
Makefile
10 lines
225 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support
|
|
obj-y := common.o slcr.o pm.o
|
|
CFLAGS_REMOVE_hotplug.o =-march=armv6k
|
|
CFLAGS_hotplug.o =-Wa,-march=armv7-a -mcpu=cortex-a9
|
|
obj-$(CONFIG_SMP) += headsmp.o platsmp.o
|