diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2017-05-21 16:15:47 +0300 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2017-06-20 15:22:00 +0300 |
commit | 36670fcf01aa22c7de2e96b4a6fb5fbd4dfe4a33 (patch) | |
tree | ad65708d2c9932e62cf28aeee286beb97b55178f /arch/powerpc/include/asm/exception-64s.h | |
parent | 8c3885141537966065e3d2b9be03e574ae381c79 (diff) | |
download | linux-36670fcf01aa22c7de2e96b4a6fb5fbd4dfe4a33.tar.xz |
powerpc/64s/paca: EX_SRR0 is unused, remove it
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/exception-64s.h')
-rw-r--r-- | arch/powerpc/include/asm/exception-64s.h | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/arch/powerpc/include/asm/exception-64s.h b/arch/powerpc/include/asm/exception-64s.h index 9f7f9be6bf7a..f3c6272f430f 100644 --- a/arch/powerpc/include/asm/exception-64s.h +++ b/arch/powerpc/include/asm/exception-64s.h @@ -42,17 +42,16 @@ #define EX_R11 16 #define EX_R12 24 #define EX_R13 32 -#define EX_SRR0 40 -#define EX_DAR 48 -#define EX_DSISR 56 -#define EX_CCR 60 -#define EX_R3 64 -#define EX_LR 72 -#define EX_CFAR 80 -#define EX_PPR 88 /* SMT thread status register (priority) */ -#define EX_CTR 96 - -#define EX_SIZE 13 /* size in u64 units */ +#define EX_DAR 40 +#define EX_DSISR 48 +#define EX_CCR 52 +#define EX_R3 56 +#define EX_LR 64 +#define EX_CFAR 72 +#define EX_PPR 80 /* SMT thread status register (priority) */ +#define EX_CTR 88 + +#define EX_SIZE 12 /* size in u64 units */ #ifdef CONFIG_RELOCATABLE #define __EXCEPTION_RELON_PROLOG_PSERIES_1(label, h) \ |