mirror of https://github.com/xemu-project/xemu.git
cirrus_vga: QOM'ify ISA Cirrus VGA
Introduce type constant and cast macro to obsolete DO_UPCAST(). Prepares for ISA realizefn. Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Andreas Färber <afaerber@suse.de> Message-id: 1367093935-29091-3-git-send-email-afaerber@suse.de Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
82407b6c34
commit
6d4c2f1755
|
@ -250,8 +250,13 @@ typedef struct PCICirrusVGAState {
|
||||||
CirrusVGAState cirrus_vga;
|
CirrusVGAState cirrus_vga;
|
||||||
} PCICirrusVGAState;
|
} PCICirrusVGAState;
|
||||||
|
|
||||||
|
#define TYPE_ISA_CIRRUS_VGA "isa-cirrus-vga"
|
||||||
|
#define ISA_CIRRUS_VGA(obj) \
|
||||||
|
OBJECT_CHECK(ISACirrusVGAState, (obj), TYPE_ISA_CIRRUS_VGA)
|
||||||
|
|
||||||
typedef struct ISACirrusVGAState {
|
typedef struct ISACirrusVGAState {
|
||||||
ISADevice dev;
|
ISADevice parent_obj;
|
||||||
|
|
||||||
CirrusVGAState cirrus_vga;
|
CirrusVGAState cirrus_vga;
|
||||||
} ISACirrusVGAState;
|
} ISACirrusVGAState;
|
||||||
|
|
||||||
|
@ -2904,7 +2909,7 @@ static void cirrus_init_common(CirrusVGAState * s, int device_id, int is_pci,
|
||||||
|
|
||||||
static int vga_initfn(ISADevice *dev)
|
static int vga_initfn(ISADevice *dev)
|
||||||
{
|
{
|
||||||
ISACirrusVGAState *d = DO_UPCAST(ISACirrusVGAState, dev, dev);
|
ISACirrusVGAState *d = ISA_CIRRUS_VGA(dev);
|
||||||
VGACommonState *s = &d->cirrus_vga.vga;
|
VGACommonState *s = &d->cirrus_vga.vga;
|
||||||
|
|
||||||
vga_common_init(s);
|
vga_common_init(s);
|
||||||
|
@ -2917,7 +2922,7 @@ static int vga_initfn(ISADevice *dev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property isa_vga_cirrus_properties[] = {
|
static Property isa_cirrus_vga_properties[] = {
|
||||||
DEFINE_PROP_UINT32("vgamem_mb", struct ISACirrusVGAState,
|
DEFINE_PROP_UINT32("vgamem_mb", struct ISACirrusVGAState,
|
||||||
cirrus_vga.vga.vram_size_mb, 8),
|
cirrus_vga.vga.vram_size_mb, 8),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
|
@ -2930,11 +2935,11 @@ static void isa_cirrus_vga_class_init(ObjectClass *klass, void *data)
|
||||||
|
|
||||||
dc->vmsd = &vmstate_cirrus_vga;
|
dc->vmsd = &vmstate_cirrus_vga;
|
||||||
k->init = vga_initfn;
|
k->init = vga_initfn;
|
||||||
dc->props = isa_vga_cirrus_properties;
|
dc->props = isa_cirrus_vga_properties;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const TypeInfo isa_cirrus_vga_info = {
|
static const TypeInfo isa_cirrus_vga_info = {
|
||||||
.name = "isa-cirrus-vga",
|
.name = TYPE_ISA_CIRRUS_VGA,
|
||||||
.parent = TYPE_ISA_DEVICE,
|
.parent = TYPE_ISA_DEVICE,
|
||||||
.instance_size = sizeof(ISACirrusVGAState),
|
.instance_size = sizeof(ISACirrusVGAState),
|
||||||
.class_init = isa_cirrus_vga_class_init,
|
.class_init = isa_cirrus_vga_class_init,
|
||||||
|
|
Loading…
Reference in New Issue