diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2020-09-16 05:02:33 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-10-06 14:22:22 +0200 |
commit | 9983efa83b0a98da33807ccf5c047e204fdcac4c (patch) | |
tree | e542d6bc9691a9f16e89064f09563bce4e1fa52e /arch/powerpc/kernel/cputable.c | |
parent | powerpc/powernv/elog: Fix race while processing OPAL error log event. (diff) | |
download | linux-9983efa83b0a98da33807ccf5c047e204fdcac4c.tar.xz linux-9983efa83b0a98da33807ccf5c047e204fdcac4c.zip |
powerpc: untangle cputable mce include
Having cputable.h include mce.h means it pulls in a bunch of low level
headers (e.g., synch.h) which then can't use CPU_FTR_ definitions.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200916030234.4110379-1-npiggin@gmail.com
Diffstat (limited to 'arch/powerpc/kernel/cputable.c')
-rw-r--r-- | arch/powerpc/kernel/cputable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index 2aa89c6b2896..b5bc2edef440 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c @@ -16,6 +16,7 @@ #include <asm/oprofile_impl.h> #include <asm/cputable.h> #include <asm/prom.h> /* for PTRRELOC on ARCH=ppc */ +#include <asm/mce.h> #include <asm/mmu.h> #include <asm/setup.h> |