mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 04:13:39 +08:00
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;
|
||||
} 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 {
|
||||
ISADevice dev;
|
||||
ISADevice parent_obj;
|
||||
|
||||
CirrusVGAState cirrus_vga;
|
||||
} ISACirrusVGAState;
|
||||
|
||||
@ -2904,7 +2909,7 @@ static void cirrus_init_common(CirrusVGAState * s, int device_id, int is_pci,
|
||||
|
||||
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;
|
||||
|
||||
vga_common_init(s);
|
||||
@ -2917,7 +2922,7 @@ static int vga_initfn(ISADevice *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static Property isa_vga_cirrus_properties[] = {
|
||||
static Property isa_cirrus_vga_properties[] = {
|
||||
DEFINE_PROP_UINT32("vgamem_mb", struct ISACirrusVGAState,
|
||||
cirrus_vga.vga.vram_size_mb, 8),
|
||||
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;
|
||||
k->init = vga_initfn;
|
||||
dc->props = isa_vga_cirrus_properties;
|
||||
dc->props = isa_cirrus_vga_properties;
|
||||
}
|
||||
|
||||
static const TypeInfo isa_cirrus_vga_info = {
|
||||
.name = "isa-cirrus-vga",
|
||||
.name = TYPE_ISA_CIRRUS_VGA,
|
||||
.parent = TYPE_ISA_DEVICE,
|
||||
.instance_size = sizeof(ISACirrusVGAState),
|
||||
.class_init = isa_cirrus_vga_class_init,
|
||||
|
Loading…
Reference in New Issue
Block a user