sim-card
/
qemu
Archived
10
0
Fork 0

sga: fix copypasta

Fix the name of the init function.

Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Blue Swirl 2011-10-23 14:39:46 +00:00
parent 3d402831de
commit 6618f9095c
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ typedef struct ISAGAState {
ISADevice dev;
} ISASGAState;
static int isa_cirrus_vga_initfn(ISADevice *dev)
static int sga_initfn(ISADevice *dev)
{
rom_add_vga(SGABIOS_FILENAME);
return 0;
@ -45,7 +45,7 @@ static ISADeviceInfo sga_info = {
.qdev.name = "sga",
.qdev.desc = "Serial Graphics Adapter",
.qdev.size = sizeof(ISASGAState),
.init = isa_cirrus_vga_initfn,
.init = sga_initfn,
};
static void sga_register(void)