Message ID | 20230627115124.19632-2-philmd@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | target/ppc: Few cleanups in kvm_ppc.h | expand |
On 6/27/23 13:51, Philippe Mathieu-Daudé wrote: > "kvm_ppc.h" declares: > > int kvm_handle_nmi(PowerPCCPU *cpu, struct kvm_run *run); > > 'struct kvm_run' is declared in "sysemu/kvm.h", include it. > > Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Cédric Le Goater <clg@kaod.org> Thanks, C. > --- > target/ppc/kvm_ppc.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/target/ppc/kvm_ppc.h b/target/ppc/kvm_ppc.h > index 611debc3ce..2e395416f0 100644 > --- a/target/ppc/kvm_ppc.h > +++ b/target/ppc/kvm_ppc.h > @@ -9,6 +9,7 @@ > #ifndef KVM_PPC_H > #define KVM_PPC_H > > +#include "sysemu/kvm.h" > #include "exec/hwaddr.h" > #include "cpu.h" >
diff --git a/target/ppc/kvm_ppc.h b/target/ppc/kvm_ppc.h index 611debc3ce..2e395416f0 100644 --- a/target/ppc/kvm_ppc.h +++ b/target/ppc/kvm_ppc.h @@ -9,6 +9,7 @@ #ifndef KVM_PPC_H #define KVM_PPC_H +#include "sysemu/kvm.h" #include "exec/hwaddr.h" #include "cpu.h"
"kvm_ppc.h" declares: int kvm_handle_nmi(PowerPCCPU *cpu, struct kvm_run *run); 'struct kvm_run' is declared in "sysemu/kvm.h", include it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- target/ppc/kvm_ppc.h | 1 + 1 file changed, 1 insertion(+)