diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2020-02-28 01:14:42 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-04-01 05:30:48 +0200 |
commit | 1b20773b00b71e361a6072d4b0ea6299e10678c9 (patch) | |
tree | b20b553bb52baf4484ecaa5dbc4413be5645fb5a /arch/powerpc/kernel/ptrace/Makefile | |
parent | powerpc/ptrace: split out VSX related functions. (diff) | |
download | linux-1b20773b00b71e361a6072d4b0ea6299e10678c9.tar.xz linux-1b20773b00b71e361a6072d4b0ea6299e10678c9.zip |
powerpc/ptrace: split out ALTIVEC related functions.
Move CONFIG_ALTIVEC functions out of ptrace.c, into
ptrace-altivec.c
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/35dae891d01c817fca0fd6ab406a3a2c7bf07f60.1582848567.git.christophe.leroy@c-s.fr
Diffstat (limited to 'arch/powerpc/kernel/ptrace/Makefile')
-rw-r--r-- | arch/powerpc/kernel/ptrace/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/ptrace/Makefile b/arch/powerpc/kernel/ptrace/Makefile index 238c27189078..522e6fd0b5b8 100644 --- a/arch/powerpc/kernel/ptrace/Makefile +++ b/arch/powerpc/kernel/ptrace/Makefile @@ -11,3 +11,4 @@ obj-$(CONFIG_VSX) += ptrace-vsx.o ifneq ($(CONFIG_VSX),y) obj-y += ptrace-novsx.o endif +obj-$(CONFIG_ALTIVEC) += ptrace-altivec.o |