Revision 6618f909

b/hw/sga.c
35 35
    ISADevice dev;
36 36
} ISASGAState;
37 37

  
38
static int isa_cirrus_vga_initfn(ISADevice *dev)
38
static int sga_initfn(ISADevice *dev)
39 39
{
40 40
    rom_add_vga(SGABIOS_FILENAME);
41 41
    return 0;
......
45 45
    .qdev.name    = "sga",
46 46
    .qdev.desc    = "Serial Graphics Adapter",
47 47
    .qdev.size    = sizeof(ISASGAState),
48
    .init         = isa_cirrus_vga_initfn,
48
    .init         = sga_initfn,
49 49
};
50 50

  
51 51
static void sga_register(void)

Also available in: Unified diff