diff options
| author | Philippe Mathieu-Daudé | 2019-01-11 15:08:46 +0100 |
|---|---|---|
| committer | Thomas Huth | 2019-01-22 05:14:32 +0100 |
| commit | a8b56ec836860eb7144a3b9de356524316ec9f63 (patch) | |
| tree | 71a63655a99b44f21ac6b6201e62942e1a477503 /include/hw/ide | |
| parent | hw/pcmcia: Remove PCMCIACardState from "qemu/typedefs.h" (diff) | |
| download | qemu-a8b56ec836860eb7144a3b9de356524316ec9f63.tar.gz qemu-a8b56ec836860eb7144a3b9de356524316ec9f63.tar.xz qemu-a8b56ec836860eb7144a3b9de356524316ec9f63.zip | |
hw/ide/ahci: Remove AllwinnerAHCIState from "qemu/typedefs.h"
Files requiring AllwinnerAHCIState already include "hw/ide/ahci.h".
To clean "qemu/typedefs.h", move the declaration to "hw/ide/ahci.h"
(removing the forward declaration).
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/hw/ide')
| -rw-r--r-- | include/hw/ide/ahci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/ide/ahci.h b/include/hw/ide/ahci.h index b7bb2b02d6..b44e3000cf 100644 --- a/include/hw/ide/ahci.h +++ b/include/hw/ide/ahci.h @@ -73,13 +73,13 @@ typedef struct SysbusAHCIState { #define ALLWINNER_AHCI_MMIO_OFF 0x80 #define ALLWINNER_AHCI_MMIO_SIZE 0x80 -struct AllwinnerAHCIState { +typedef struct AllwinnerAHCIState { /*< private >*/ SysbusAHCIState parent_obj; /*< public >*/ MemoryRegion mmio; uint32_t regs[ALLWINNER_AHCI_MMIO_SIZE/4]; -}; +} AllwinnerAHCIState; #endif /* HW_IDE_AHCI_H */ |
