diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-03-15 16:58:45 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-19 16:42:29 +0200 |
commit | 33c11879fd422b759483ed25fef133ea900ea8d7 (patch) | |
tree | fe171757f860842a3c5c76474ec7b11bc08c51c8 /hw/core/nmi.c | |
parent | 35c5a52d1d016c632aed6137549754ca53446c92 (diff) | |
download | qemu-33c11879fd422b759483ed25fef133ea900ea8d7.zip qemu-33c11879fd422b759483ed25fef133ea900ea8d7.tar.gz qemu-33c11879fd422b759483ed25fef133ea900ea8d7.tar.bz2 |
qemu-common: push cpu.h inclusion out of qemu-common.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/core/nmi.c')
-rw-r--r-- | hw/core/nmi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/core/nmi.c b/hw/core/nmi.c index e8bcc41..f616a79 100644 --- a/hw/core/nmi.c +++ b/hw/core/nmi.c @@ -20,11 +20,16 @@ */ #include "qemu/osdep.h" +#include "qom/cpu.h" #include "hw/nmi.h" #include "qapi/error.h" #include "qapi/qmp/qerror.h" #include "monitor/monitor.h" +#if defined(TARGET_I386) +#include "cpu.h" +#endif + struct do_nmi_s { int cpu_index; Error *err; |