diff options
author | Andreas Färber <afaerber@suse.de> | 2013-07-26 18:57:48 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-07-29 21:06:57 +0200 |
commit | 285b4432da565ebcca0bc5eab1783b77ef3450c0 (patch) | |
tree | 76ff939aadadd400621c5ccba70efdea3d72c514 /hw/intc/gic_internal.h | |
parent | 3e5dd364d933ccc066cbea8620bdc16525e19230 (diff) | |
download | hqemu-285b4432da565ebcca0bc5eab1783b77ef3450c0.zip hqemu-285b4432da565ebcca0bc5eab1783b77ef3450c0.tar.gz |
arm_gic: QOM cast cleanup
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw/intc/gic_internal.h')
-rw-r--r-- | hw/intc/gic_internal.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/intc/gic_internal.h b/hw/intc/gic_internal.h index 99a3bc3..1426437 100644 --- a/hw/intc/gic_internal.h +++ b/hw/intc/gic_internal.h @@ -70,7 +70,10 @@ typedef struct gic_irq_state { } gic_irq_state; typedef struct GICState { - SysBusDevice busdev; + /*< private >*/ + SysBusDevice parent_obj; + /*< public >*/ + qemu_irq parent_irq[NCPU]; bool enabled; bool cpu_enabled[NCPU]; |