Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf tools mips: Fix mips syscall generation

The mips syscall generation was still based on the old method. Delete
the Makefile since it is no longer needed with the new method of
generation.

Reported-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Fixes: 619ffe669496a288 ("perf tools mips: Use generic syscall scripts")
Signed-off-by: Charlie Jenkins <charlie@rivosinc.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20250110-perf_fix_mips-v1-1-4e661c3b710a@rivosinc.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Charlie Jenkins and committed by
Arnaldo Carvalho de Melo
b1bb6fc0 05cd60e4

-18
-18
tools/perf/arch/mips/Makefile
··· 1 - # SPDX-License-Identifier: GPL-2.0 2 - # Syscall table generation for perf 3 - out := $(OUTPUT)arch/mips/include/generated/asm 4 - header := $(out)/syscalls_n64.c 5 - sysprf := $(srctree)/tools/perf/arch/mips/entry/syscalls 6 - sysdef := $(sysprf)/syscall_n64.tbl 7 - systbl := $(sysprf)/mksyscalltbl 8 - 9 - # Create output directory if not already present 10 - $(shell [ -d '$(out)' ] || mkdir -p '$(out)') 11 - 12 - $(header): $(sysdef) $(systbl) 13 - $(Q)$(SHELL) '$(systbl)' $(sysdef) > $@ 14 - 15 - clean:: 16 - $(call QUIET_CLEAN, mips) $(RM) $(header) 17 - 18 - archheaders: $(header)