diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2012-09-08 16:40:56 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2012-10-06 18:48:37 +0200 |
commit | 6405c86412719a0ccd1a09b81baf0b78e8a4ae6b (patch) | |
tree | 62c44de497536608c5fd17f1fb0476ac84e4f29f /hw/pc.c | |
parent | a1e472119aa2efa88a2a24b1aa50e45ea8cc8f31 (diff) |
vga: rename isa_vga_init() to isa_std_vga_init()
This better explains what is this function about. Adjust all callers.
Cc: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'hw/pc.c')
-rw-r--r-- | hw/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1016,7 +1016,7 @@ DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus) if (pci_bus) { dev = pci_std_vga_init(pci_bus); } else { - dev = isa_vga_init(isa_bus); + dev = isa_std_vga_init(isa_bus); } } |