Skip to content

Commit

Permalink
sun4m: QOM cast cleanup for AFXState
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
afaerber committed Jul 29, 2013
1 parent ef9dfa4 commit b3a4996
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions hw/sparc/sun4m.c
Expand Up @@ -612,8 +612,12 @@ static const TypeInfo idreg_info = {
.class_init = idreg_class_init,
};

#define TYPE_TCX_AFX "tcx_afx"
#define TCX_AFX(obj) OBJECT_CHECK(AFXState, (obj), TYPE_TCX_AFX)

typedef struct AFXState {
SysBusDevice busdev;
SysBusDevice parent_obj;

MemoryRegion mem;
} AFXState;

Expand All @@ -623,7 +627,7 @@ static void afx_init(hwaddr addr)
DeviceState *dev;
SysBusDevice *s;

dev = qdev_create(NULL, "tcx_afx");
dev = qdev_create(NULL, TYPE_TCX_AFX);
qdev_init_nofail(dev);
s = SYS_BUS_DEVICE(dev);

Expand All @@ -632,7 +636,7 @@ static void afx_init(hwaddr addr)

static int afx_init1(SysBusDevice *dev)
{
AFXState *s = FROM_SYSBUS(AFXState, dev);
AFXState *s = TCX_AFX(dev);

memory_region_init_ram(&s->mem, OBJECT(s), "sun4m.afx", 4);
vmstate_register_ram_global(&s->mem);
Expand All @@ -648,7 +652,7 @@ static void afx_class_init(ObjectClass *klass, void *data)
}

static const TypeInfo afx_info = {
.name = "tcx_afx",
.name = TYPE_TCX_AFX,
.parent = TYPE_SYS_BUS_DEVICE,
.instance_size = sizeof(AFXState),
.class_init = afx_class_init,
Expand Down

0 comments on commit b3a4996

Please sign in to comment.