The exported ptrace.h header on CRIS references an "arch" directory which does not exist. Fix this by having the variants in the same directory and including them conditionally, similar to other architectures. Signed-off-by: Rabin Vincent <rabin@rab.in> Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
6 lines
87 B
C
6 lines
87 B
C
#ifdef __arch_v32
|
|
#include <asm/ptrace_v32.h>
|
|
#else
|
|
#include <asm/ptrace_v10.h>
|
|
#endif
|