diff options
author | Thomas Huth | 2021-04-16 19:13:11 +0200 |
---|---|---|
committer | Laurent Vivier | 2021-05-02 17:24:50 +0200 |
commit | 4c386f8064ca3241a61341b5c5d5a70bbab496ab (patch) | |
tree | 2e2ab4f32c1b65f150fcdb40fd2d634736176d85 /backends | |
parent | hw: Do not include qemu/log.h if it is not necessary (diff) | |
download | qemu-4c386f8064ca3241a61341b5c5d5a70bbab496ab.tar.gz qemu-4c386f8064ca3241a61341b5c5d5a70bbab496ab.tar.xz qemu-4c386f8064ca3241a61341b5c5d5a70bbab496ab.zip |
Do not include sysemu/sysemu.h if it's not really necessary
Stop including sysemu/sysemu.h in files that don't need it.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210416171314.2074665-2-thuth@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'backends')
-rw-r--r-- | backends/hostmem-file.c | 1 | ||||
-rw-r--r-- | backends/hostmem-memfd.c | 1 | ||||
-rw-r--r-- | backends/hostmem.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/backends/hostmem-file.c b/backends/hostmem-file.c index b683da9daf..9b1b9f0a56 100644 --- a/backends/hostmem-file.c +++ b/backends/hostmem-file.c @@ -15,7 +15,6 @@ #include "qemu/error-report.h" #include "qemu/module.h" #include "sysemu/hostmem.h" -#include "sysemu/sysemu.h" #include "qom/object_interfaces.h" #include "qom/object.h" diff --git a/backends/hostmem-memfd.c b/backends/hostmem-memfd.c index 69b0ae30bb..da75e27057 100644 --- a/backends/hostmem-memfd.c +++ b/backends/hostmem-memfd.c @@ -12,7 +12,6 @@ #include "qemu/osdep.h" #include "sysemu/hostmem.h" -#include "sysemu/sysemu.h" #include "qom/object_interfaces.h" #include "qemu/memfd.h" #include "qemu/module.h" diff --git a/backends/hostmem.c b/backends/hostmem.c index c6c1ff5b99..aab3de8408 100644 --- a/backends/hostmem.c +++ b/backends/hostmem.c @@ -12,7 +12,6 @@ #include "qemu/osdep.h" #include "sysemu/hostmem.h" -#include "sysemu/sysemu.h" #include "hw/boards.h" #include "qapi/error.h" #include "qapi/qapi-builtin-visit.h" |