diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-03-16 10:24:54 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-19 16:42:30 +0200 |
commit | df43d49cb8708b9c88a20afe0d1a3089b550a5b8 (patch) | |
tree | 8bb3579b495d9c5d19145041623dc10f6e2f8d18 /include/hw/isa | |
parent | 89a80e7400f7225d9401b35ef32454b4ab29dc67 (diff) | |
download | qemu-df43d49cb8708b9c88a20afe0d1a3089b550a5b8.zip qemu-df43d49cb8708b9c88a20afe0d1a3089b550a5b8.tar.gz qemu-df43d49cb8708b9c88a20afe0d1a3089b550a5b8.tar.bz2 |
hw: clean up hw/hw.h includes
Include qom/object.h and exec/memory.h instead of exec/ioport.h;
exec/ioport.h was almost everywhere required only for those two
includes, not for the content of the header itself.
Remove block/aio.h, everybody is already including it through
another path.
With this change, include/hw/hw.h is freed from qemu-common.h.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/isa')
-rw-r--r-- | include/hw/isa/isa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/isa/isa.h b/include/hw/isa/isa.h index ffb2ea7..c87fbad 100644 --- a/include/hw/isa/isa.h +++ b/include/hw/isa/isa.h @@ -3,8 +3,8 @@ /* ISA bus */ -#include "exec/ioport.h" #include "exec/memory.h" +#include "exec/ioport.h" #include "hw/qdev.h" #define ISA_NUM_IRQS 16 |