mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 14:40:53 +07:00
268a2d6001
CPU_LOONGSON2 -> CPU_LOONGSON2EF CPU_LOONGSON3 -> CPU_LOONGSON64 As newer loongson-2 products (2G/2H/2K1000) can share kernel implementation with loongson-3 while 2E/2F are less similar with other LOONGSON64 products. Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Signed-off-by: Paul Burton <paulburton@kernel.org> Cc: linux-mips@vger.kernel.org Cc: chenhc@lemote.com Cc: paul.burton@mips.com
19 lines
680 B
Makefile
19 lines
680 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_OPROFILE) += oprofile.o
|
|
|
|
DRIVER_OBJS = $(addprefix ../../../drivers/oprofile/, \
|
|
oprof.o cpu_buffer.o buffer_sync.o \
|
|
event_buffer.o oprofile_files.o \
|
|
oprofilefs.o oprofile_stats.o \
|
|
timer_int.o )
|
|
|
|
oprofile-y := $(DRIVER_OBJS) common.o backtrace.o
|
|
|
|
oprofile-$(CONFIG_CPU_MIPS32) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_MIPS64) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_R10000) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_SB1) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_XLR) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_LOONGSON2EF) += op_model_loongson2.o
|
|
oprofile-$(CONFIG_CPU_LOONGSON64) += op_model_loongson3.o
|