diff options
author | Philippe Mathieu-Daudé | 2019-01-11 15:08:44 +0100 |
---|---|---|
committer | Thomas Huth | 2019-01-22 05:14:32 +0100 |
commit | 2274e7ddd16219439bf8eef5a606b1be0c6a47a3 (patch) | |
tree | 5eea810c4f872b3ca310a7b640bbdce85c72ad23 /include/hw/pcmcia.h | |
parent | hw/input/ps2: Remove PS2State from "qemu/typedefs.h" (diff) | |
download | qemu-2274e7ddd16219439bf8eef5a606b1be0c6a47a3.tar.gz qemu-2274e7ddd16219439bf8eef5a606b1be0c6a47a3.tar.xz qemu-2274e7ddd16219439bf8eef5a606b1be0c6a47a3.zip |
hw/pcmcia: Remove PCMCIACardState from "qemu/typedefs.h"
There is only one header file requiring this typedef (hw/arm/pxa.h),
let it include "hw/pcmcia.h" directly to simplify "qemu/typedefs.h".
To clean "qemu/typedefs.h", move the declaration to "hw/pcmcia.h"
(removing the forward declaration).
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
[thuth: slightly tweaked commit message]
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/hw/pcmcia.h')
-rw-r--r-- | include/hw/pcmcia.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/pcmcia.h b/include/hw/pcmcia.h index 79cac9c761..1b4080764f 100644 --- a/include/hw/pcmcia.h +++ b/include/hw/pcmcia.h @@ -18,13 +18,13 @@ typedef struct PCMCIASocket { #define PCMCIA_CARD_CLASS(cls) \ OBJECT_CLASS_CHECK(PCMCIACardClass, cls, TYPE_PCMCIA_CARD) -struct PCMCIACardState { +typedef struct PCMCIACardState { /*< private >*/ DeviceState parent_obj; /*< public >*/ PCMCIASocket *slot; -}; +} PCMCIACardState; typedef struct PCMCIACardClass { /*< private >*/ |