diff options
author | Hari Bathini <hbathini@linux.ibm.com> | 2019-09-11 20:16:21 +0530 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2019-09-14 00:04:41 +1000 |
commit | ca986d7fa7e7f7b3f018f227b999f35e654fbb79 (patch) | |
tree | 1d49e676d0c64045e4cd0d2d007f919592aff7a7 /arch/powerpc/kernel/fadump.c | |
parent | 1fdfa4c6af0cc1854b017f308af6bece94568bb6 (diff) | |
download | linux-ca986d7fa7e7f7b3f018f227b999f35e654fbb79.tar.gz linux-ca986d7fa7e7f7b3f018f227b999f35e654fbb79.tar.bz2 linux-ca986d7fa7e7f7b3f018f227b999f35e654fbb79.zip |
powerpc/fadump: move internal macros/definitions to a new header
Though asm/fadump.h is meant to be used by other components dealing
with FADump, it also has macros/definitions internal to FADump code.
Move them to a new header file used within FADump code. This also
makes way for refactoring platform specific FADump code.
Signed-off-by: Hari Bathini <hbathini@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/156821313134.5656.6597770626574392140.stgit@hbathini.in.ibm.com
Diffstat (limited to 'arch/powerpc/kernel/fadump.c')
-rw-r--r-- | arch/powerpc/kernel/fadump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/fadump.c b/arch/powerpc/kernel/fadump.c index 4eab97292cc2..7c55044cf9d4 100644 --- a/arch/powerpc/kernel/fadump.c +++ b/arch/powerpc/kernel/fadump.c @@ -30,6 +30,7 @@ #include <asm/prom.h> #include <asm/rtas.h> #include <asm/fadump.h> +#include <asm/fadump-internal.h> #include <asm/setup.h> static struct fw_dump fw_dump; |