diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2018-02-20 14:08:28 -0500 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-03-31 09:47:50 -0400 |
commit | 3735eb850e6c3e7472329fea368e7d030a4d89dd (patch) | |
tree | f6073837a84877b1968c8dedbe58cae3e461c23f | |
parent | 9e9626ed3a4affe7fe0e17e98c357849ad299e50 (diff) |
powerpc: Remove unused CPU_FTR_ARCH_201
The last usage was removed in c17b98cf6028 ("KVM: PPC: Book3S HV:
Remove code for PPC970 processors") (Dec 2014).
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r-- | arch/powerpc/include/asm/cputable.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/include/asm/cputable.h b/arch/powerpc/include/asm/cputable.h index f6e0d95da004..17c791277d02 100644 --- a/arch/powerpc/include/asm/cputable.h +++ b/arch/powerpc/include/asm/cputable.h | |||
@@ -183,7 +183,6 @@ static inline void cpu_feature_keys_init(void) { } | |||
183 | 183 | ||
184 | #define CPU_FTR_REAL_LE LONG_ASM_CONST(0x0000000000001000) | 184 | #define CPU_FTR_REAL_LE LONG_ASM_CONST(0x0000000000001000) |
185 | #define CPU_FTR_HVMODE LONG_ASM_CONST(0x0000000000002000) | 185 | #define CPU_FTR_HVMODE LONG_ASM_CONST(0x0000000000002000) |
186 | #define CPU_FTR_ARCH_201 LONG_ASM_CONST(0x0000000000004000) | ||
187 | #define CPU_FTR_ARCH_206 LONG_ASM_CONST(0x0000000000008000) | 186 | #define CPU_FTR_ARCH_206 LONG_ASM_CONST(0x0000000000008000) |
188 | #define CPU_FTR_ARCH_207S LONG_ASM_CONST(0x0000000000010000) | 187 | #define CPU_FTR_ARCH_207S LONG_ASM_CONST(0x0000000000010000) |
189 | #define CPU_FTR_ARCH_300 LONG_ASM_CONST(0x0000000000020000) | 188 | #define CPU_FTR_ARCH_300 LONG_ASM_CONST(0x0000000000020000) |
@@ -419,7 +418,7 @@ static inline void cpu_feature_keys_init(void) { } | |||
419 | CPU_FTR_MMCRA | CPU_FTR_CP_USE_DCBTZ | \ | 418 | CPU_FTR_MMCRA | CPU_FTR_CP_USE_DCBTZ | \ |
420 | CPU_FTR_STCX_CHECKS_ADDRESS) | 419 | CPU_FTR_STCX_CHECKS_ADDRESS) |
421 | #define CPU_FTRS_PPC970 (CPU_FTR_LWSYNC | \ | 420 | #define CPU_FTRS_PPC970 (CPU_FTR_LWSYNC | \ |
422 | CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_201 | \ | 421 | CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \ |
423 | CPU_FTR_ALTIVEC_COMP | CPU_FTR_CAN_NAP | CPU_FTR_MMCRA | \ | 422 | CPU_FTR_ALTIVEC_COMP | CPU_FTR_CAN_NAP | CPU_FTR_MMCRA | \ |
424 | CPU_FTR_CP_USE_DCBTZ | CPU_FTR_STCX_CHECKS_ADDRESS | \ | 423 | CPU_FTR_CP_USE_DCBTZ | CPU_FTR_STCX_CHECKS_ADDRESS | \ |
425 | CPU_FTR_HVMODE | CPU_FTR_DABRX) | 424 | CPU_FTR_HVMODE | CPU_FTR_DABRX) |