diff options
author | Markus Armbruster <armbru@redhat.com> | 2015-03-17 18:29:20 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2015-06-22 18:20:40 +0200 |
commit | d49b68364414d649b8e26232f2a600d415611662 (patch) | |
tree | fbde3c1efaf1c7b431d5015d5c7b2855ec7b963c /hw/core | |
parent | 4629ed1e98961bbe678db68ef5f4342ff174a6c3 (diff) | |
download | qemu-d49b68364414d649b8e26232f2a600d415611662.tar.gz qemu-d49b68364414d649b8e26232f2a600d415611662.tar.bz2 qemu-d49b68364414d649b8e26232f2a600d415611662.zip |
qerror: Move #include out of qerror.h
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'hw/core')
-rw-r--r-- | hw/core/qdev-properties.c | 1 | ||||
-rw-r--r-- | hw/core/qdev.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/hw/core/qdev-properties.c b/hw/core/qdev-properties.c index bb8345cb76..47c1e8f3c5 100644 --- a/hw/core/qdev-properties.c +++ b/hw/core/qdev-properties.c @@ -1,6 +1,7 @@ #include "net/net.h" #include "hw/qdev.h" #include "qapi/qmp/qerror.h" +#include "qemu/error-report.h" #include "sysemu/block-backend.h" #include "hw/block/block.h" #include "net/hub.h" diff --git a/hw/core/qdev.c b/hw/core/qdev.c index ac380d7fcf..b2f404a765 100644 --- a/hw/core/qdev.c +++ b/hw/core/qdev.c @@ -32,6 +32,7 @@ #include "qapi/qmp/qerror.h" #include "qapi/visitor.h" #include "qapi/qmp/qjson.h" +#include "qemu/error-report.h" #include "hw/hotplug.h" #include "hw/boards.h" #include "qapi-event.h" |