diff options
author | Thomas Huth <thuth@redhat.com> | 2019-01-04 16:32:23 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2019-01-09 11:24:35 +0100 |
commit | 0cd0589ecf4248c489c2bdbeb1192d16e96d77e1 (patch) | |
tree | b916cf84eb001abfc568e6f60724170aebcace4e /hw/ide | |
parent | 29bc0a6072d30287eee35ae1adf8de0aff0e6d49 (diff) | |
download | qemu-0cd0589ecf4248c489c2bdbeb1192d16e96d77e1.zip qemu-0cd0589ecf4248c489c2bdbeb1192d16e96d77e1.tar.gz qemu-0cd0589ecf4248c489c2bdbeb1192d16e96d77e1.tar.bz2 |
trivial: Don't include isa.h if it is not really necessary
These files don't seem to do anything related to ISA directly, so
there is no need to include isa.h here.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <1546615943-16274-1-git-send-email-thuth@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/ide')
-rw-r--r-- | hw/ide/pci.c | 1 | ||||
-rw-r--r-- | hw/ide/piix.c | 1 | ||||
-rw-r--r-- | hw/ide/via.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/hw/ide/pci.c b/hw/ide/pci.c index fe1ceeb..b75154f 100644 --- a/hw/ide/pci.c +++ b/hw/ide/pci.c @@ -25,7 +25,6 @@ #include "qemu/osdep.h" #include "hw/hw.h" #include "hw/pci/pci.h" -#include "hw/isa/isa.h" #include "sysemu/dma.h" #include "qemu/error-report.h" #include "hw/ide/pci.h" diff --git a/hw/ide/piix.c b/hw/ide/piix.c index a3afe1f..885c16e 100644 --- a/hw/ide/piix.c +++ b/hw/ide/piix.c @@ -26,7 +26,6 @@ #include "qemu/osdep.h" #include "hw/hw.h" #include "hw/pci/pci.h" -#include "hw/isa/isa.h" #include "sysemu/block-backend.h" #include "sysemu/sysemu.h" #include "sysemu/blockdev.h" diff --git a/hw/ide/via.c b/hw/ide/via.c index 238f038..987d99c 100644 --- a/hw/ide/via.c +++ b/hw/ide/via.c @@ -26,7 +26,6 @@ #include "qemu/osdep.h" #include "hw/hw.h" #include "hw/pci/pci.h" -#include "hw/isa/isa.h" #include "sysemu/sysemu.h" #include "sysemu/dma.h" |