diff options
author | Markus Armbruster | 2019-08-12 07:23:48 +0200 |
---|---|---|
committer | Markus Armbruster | 2019-08-16 13:31:52 +0200 |
commit | 650d103d3ea959212f826acb9d3fe80cf30e347b (patch) | |
tree | d77413eb83368a13ba4dfd0d592997602fa963df /hw/pci-host | |
parent | Include qom/object.h slightly less (diff) | |
download | qemu-650d103d3ea959212f826acb9d3fe80cf30e347b.tar.gz qemu-650d103d3ea959212f826acb9d3fe80cf30e347b.tar.xz qemu-650d103d3ea959212f826acb9d3fe80cf30e347b.zip |
Include hw/hw.h exactly where needed
In my "build everything" tree, changing hw/hw.h triggers a recompile
of some 2600 out of 6600 objects (not counting tests and objects that
don't depend on qemu/osdep.h).
The previous commits have left only the declaration of hw_error() in
hw/hw.h. This permits dropping most of its inclusions. Touching it
now recompiles less than 200 objects.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20190812052359.30071-19-armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'hw/pci-host')
-rw-r--r-- | hw/pci-host/bonito.c | 1 | ||||
-rw-r--r-- | hw/pci-host/gpex.c | 1 | ||||
-rw-r--r-- | hw/pci-host/piix.c | 1 | ||||
-rw-r--r-- | hw/pci-host/ppce500.c | 1 | ||||
-rw-r--r-- | hw/pci-host/prep.c | 1 | ||||
-rw-r--r-- | hw/pci-host/q35.c | 1 | ||||
-rw-r--r-- | hw/pci-host/uninorth.c | 1 |
7 files changed, 0 insertions, 7 deletions
diff --git a/hw/pci-host/bonito.c b/hw/pci-host/bonito.c index 58870e0d87..30e078763f 100644 --- a/hw/pci-host/bonito.c +++ b/hw/pci-host/bonito.c @@ -39,7 +39,6 @@ #include "qemu/osdep.h" #include "qemu/error-report.h" -#include "hw/hw.h" #include "hw/pci/pci.h" #include "hw/i386/pc.h" #include "hw/irq.h" diff --git a/hw/pci-host/gpex.c b/hw/pci-host/gpex.c index 1a45c30505..93f28efb49 100644 --- a/hw/pci-host/gpex.c +++ b/hw/pci-host/gpex.c @@ -31,7 +31,6 @@ #include "qemu/osdep.h" #include "qapi/error.h" -#include "hw/hw.h" #include "hw/irq.h" #include "hw/pci-host/gpex.h" #include "migration/vmstate.h" diff --git a/hw/pci-host/piix.c b/hw/pci-host/piix.c index 9e8c8542d3..bc9726057a 100644 --- a/hw/pci-host/piix.c +++ b/hw/pci-host/piix.c @@ -23,7 +23,6 @@ */ #include "qemu/osdep.h" -#include "hw/hw.h" #include "hw/i386/pc.h" #include "hw/irq.h" #include "hw/pci/pci.h" diff --git a/hw/pci-host/ppce500.c b/hw/pci-host/ppce500.c index 840869f19c..241e7e788d 100644 --- a/hw/pci-host/ppce500.c +++ b/hw/pci-host/ppce500.c @@ -15,7 +15,6 @@ */ #include "qemu/osdep.h" -#include "hw/hw.h" #include "hw/irq.h" #include "hw/ppc/e500-ccsr.h" #include "migration/vmstate.h" diff --git a/hw/pci-host/prep.c b/hw/pci-host/prep.c index 34a36812ea..588c7dc6c0 100644 --- a/hw/pci-host/prep.c +++ b/hw/pci-host/prep.c @@ -27,7 +27,6 @@ #include "qemu-common.h" #include "qemu/units.h" #include "qapi/error.h" -#include "hw/hw.h" #include "hw/pci/pci.h" #include "hw/pci/pci_bus.h" #include "hw/pci/pci_host.h" diff --git a/hw/pci-host/q35.c b/hw/pci-host/q35.c index 25335a8b71..1688a89b6a 100644 --- a/hw/pci-host/q35.c +++ b/hw/pci-host/q35.c @@ -29,7 +29,6 @@ */ #include "qemu/osdep.h" -#include "hw/hw.h" #include "hw/pci-host/q35.h" #include "migration/vmstate.h" #include "qapi/error.h" diff --git a/hw/pci-host/uninorth.c b/hw/pci-host/uninorth.c index 4ffb2d0d03..76293ab22b 100644 --- a/hw/pci-host/uninorth.c +++ b/hw/pci-host/uninorth.c @@ -23,7 +23,6 @@ */ #include "qemu/osdep.h" -#include "hw/hw.h" #include "hw/irq.h" #include "hw/ppc/mac.h" #include "qemu/module.h" |