diff options
author | Paul Mackerras <paulus@ozlabs.org> | 2016-12-01 04:03:46 +0100 |
---|---|---|
committer | Paul Mackerras <paulus@ozlabs.org> | 2016-12-01 04:03:46 +0100 |
commit | e34af7849014f1d80899b811cf9021588cb8dd88 (patch) | |
tree | a697ed84ef44a6fe97abf4376ee56d03ae3d2e67 /arch/powerpc/kvm/book3s_hv_ras.c | |
parent | Merge branch 'kvm-ppc-next' of git://git.kernel.org/pub/scm/linux/kernel/git/... (diff) | |
download | linux-e34af7849014f1d80899b811cf9021588cb8dd88.tar.xz linux-e34af7849014f1d80899b811cf9021588cb8dd88.zip |
KVM: PPC: Book3S: Move prototypes for KVM functions into kvm_ppc.h
This moves the prototypes for functions that are only called from
assembler code out of asm/asm-prototypes.h into asm/kvm_ppc.h.
The prototypes were added in commit ebe4535fbe7a ("KVM: PPC:
Book3S HV: sparse: prototypes for functions called from assembler",
2016-10-10), but given that the functions are KVM functions,
having them in a KVM header will be better for long-term
maintenance.
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
Diffstat (limited to 'arch/powerpc/kvm/book3s_hv_ras.c')
-rw-r--r-- | arch/powerpc/kvm/book3s_hv_ras.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/book3s_hv_ras.c b/arch/powerpc/kvm/book3s_hv_ras.c index be1cee5dc032..7ef0993214f3 100644 --- a/arch/powerpc/kvm/book3s_hv_ras.c +++ b/arch/powerpc/kvm/book3s_hv_ras.c @@ -16,7 +16,7 @@ #include <asm/machdep.h> #include <asm/cputhreads.h> #include <asm/hmi.h> -#include <asm/asm-prototypes.h> +#include <asm/kvm_ppc.h> /* SRR1 bits for machine check on POWER7 */ #define SRR1_MC_LDSTERR (1ul << (63-42)) |