diff options
author | BALATON Zoltan <balaton@eik.bme.hu> | 2019-01-25 14:52:11 -0500 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2019-01-25 14:52:11 -0500 |
commit | 2ab2ef078504c9a4979bd5c457fdf5903292e0f7 (patch) | |
tree | 7701a3386ab16bb3f0aad80659b5ab1af5f59c6f /include | |
parent | ad7a21e81231ae64540310384fb0f87ac8758b02 (diff) | |
download | qemu-2ab2ef078504c9a4979bd5c457fdf5903292e0f7.zip qemu-2ab2ef078504c9a4979bd5c457fdf5903292e0f7.tar.gz qemu-2ab2ef078504c9a4979bd5c457fdf5903292e0f7.tar.bz2 |
cmd646: Remove unused variable
There was a pointer to PCIIDEState in CMD646BAR which was set but
not used afterwards. Get rid of this unused variable.
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Tested-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-id: 1e352f091aa601fb2e19771aac46529fe278dd91.1547166960.git.balaton@eik.bme.hu
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/ide/pci.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/ide/pci.h b/include/hw/ide/pci.h index dbc6a03..ed723ac 100644 --- a/include/hw/ide/pci.h +++ b/include/hw/ide/pci.h @@ -41,7 +41,6 @@ typedef struct CMD646BAR { MemoryRegion cmd; MemoryRegion data; IDEBus *bus; - struct PCIIDEState *pci_dev; } CMD646BAR; #define TYPE_PCI_IDE "pci-ide" |