mirror of
https://github.com/torvalds/linux.git
synced 2026-07-12 00:03:39 +02:00
The assembler entry code calls directly to the syscall_trace_enter() and
syscall_trace_leave() functions. But currently they are conditionaly
compiled out for the non-MMU classic m68k CPU types (so 68328 for example),
resulting in a link error:
LD vmlinux
arch/m68k/platform/68328/built-in.o: In function `do_trace':
(.text+0x1c): undefined reference to `syscall_trace_enter'
arch/m68k/platform/68328/built-in.o: In function `do_trace':
(.text+0x4c): undefined reference to `syscall_trace_leave'
Change the conditional check that includes these functions to be true for
the !defined(CONFIG_MMU) case as well.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
|
||
|---|---|---|
| .. | ||
| .gitignore | ||
| asm-offsets.c | ||
| dma.c | ||
| entry_mm.S | ||
| entry_no.S | ||
| entry.S | ||
| head.S | ||
| ints.c | ||
| irq.c | ||
| m68k_ksyms.c | ||
| Makefile | ||
| module.c | ||
| module.lds | ||
| process.c | ||
| ptrace.c | ||
| setup_mm.c | ||
| setup_no.c | ||
| setup.c | ||
| signal.c | ||
| sun3-head.S | ||
| sys_m68k.c | ||
| syscalltable.S | ||
| time.c | ||
| traps.c | ||
| vectors.c | ||
| vmlinux-nommu.lds | ||
| vmlinux-std.lds | ||
| vmlinux-sun3.lds | ||
| vmlinux.lds.S | ||