* [Qemu-devel] [PATCH qom-next for-1.6] ppc: QOM cast cleanups
@ 2013-07-27 11:06 Andreas Färber
2013-07-27 11:06 ` [Qemu-devel] [PATCH qom-next for-1.6] ppce500_spin: QOM cast cleanup Andreas Färber
0 siblings, 1 reply; 2+ messages in thread
From: Andreas Färber @ 2013-07-27 11:06 UTC (permalink / raw)
To: qemu-devel; +Cc: Hu Tao, Andreas Färber
Hello,
This series eliminates FROM_SYSBUS() in hw/ppc/.
Regards,
Andreas
Cc: Hu Tao <hutao@cn.fujitsu.com>
Andreas Färber (1):
ppce500_spin: QOM cast cleanup
hw/ppc/ppce500_spin.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
--
1.8.1.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Qemu-devel] [PATCH qom-next for-1.6] ppce500_spin: QOM cast cleanup
2013-07-27 11:06 [Qemu-devel] [PATCH qom-next for-1.6] ppc: QOM cast cleanups Andreas Färber
@ 2013-07-27 11:06 ` Andreas Färber
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Färber @ 2013-07-27 11:06 UTC (permalink / raw)
To: qemu-devel; +Cc: open list:PowerPC, Andreas Färber, Alexander Graf
Introduce type constant and use QOM cast.
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
hw/ppc/ppce500_spin.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/hw/ppc/ppce500_spin.c b/hw/ppc/ppce500_spin.c
index 11b7de2..78b23fa 100644
--- a/hw/ppc/ppce500_spin.c
+++ b/hw/ppc/ppce500_spin.c
@@ -42,8 +42,12 @@ typedef struct spin_info {
uint64_t reserved;
} QEMU_PACKED SpinInfo;
-typedef struct spin_state {
- SysBusDevice busdev;
+#define TYPE_E500_SPIN "e500-spin"
+#define E500_SPIN(obj) OBJECT_CHECK(SpinState, (obj), TYPE_E500_SPIN)
+
+typedef struct SpinState {
+ SysBusDevice parent_obj;
+
MemoryRegion iomem;
SpinInfo spin[MAX_CPUS];
} SpinState;
@@ -187,9 +191,7 @@ static const MemoryRegionOps spin_rw_ops = {
static int ppce500_spin_initfn(SysBusDevice *dev)
{
- SpinState *s;
-
- s = FROM_SYSBUS(SpinState, SYS_BUS_DEVICE(dev));
+ SpinState *s = E500_SPIN(dev);
memory_region_init_io(&s->iomem, OBJECT(s), &spin_rw_ops, s,
"e500 spin pv device", sizeof(SpinInfo) * MAX_CPUS);
@@ -208,7 +210,7 @@ static void ppce500_spin_class_init(ObjectClass *klass, void *data)
}
static const TypeInfo ppce500_spin_info = {
- .name = "e500-spin",
+ .name = TYPE_E500_SPIN,
.parent = TYPE_SYS_BUS_DEVICE,
.instance_size = sizeof(SpinState),
.class_init = ppce500_spin_class_init,
--
1.8.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-27 11:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-27 11:06 [Qemu-devel] [PATCH qom-next for-1.6] ppc: QOM cast cleanups Andreas Färber
2013-07-27 11:06 ` [Qemu-devel] [PATCH qom-next for-1.6] ppce500_spin: QOM cast cleanup Andreas Färber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).