summaryrefslogtreecommitdiff
path: root/hw/alpha_pci.c
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2012-09-08 11:38:41 +0200
committerAurelien Jarno <aurelien@aurel32.net>2012-10-06 18:48:37 +0200
commita1e472119aa2efa88a2a24b1aa50e45ea8cc8f31 (patch)
treefd88d8852c04d5648f0615d4e3d44454b3dcdbf5 /hw/alpha_pci.c
parent626cd050e2c9094c1b005bc39cab637f8cbe3755 (diff)
downloadqemu-a1e472119aa2efa88a2a24b1aa50e45ea8cc8f31.tar.gz
vga: rename pci_vga_init() into pci_std_vga_init()
This better explains what is this function about. Adjust all callers. Cc: Alexander Graf <agraf@suse.de> Cc: Andreas Färber <andreas.faerber@web.de> Cc: David Gibson <david@gibson.dropbear.id.au> Cc: Anthony Liguori <aliguori@us.ibm.com> Acked-by: Richard Henderson <rth@twiddle.net> Acked-by: Blue Swirl <blauwirbel@gmail.com> Acked-by: Andreas Färber <andreas.faerber@web.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'hw/alpha_pci.c')
-rw-r--r--hw/alpha_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/alpha_pci.c b/hw/alpha_pci.c
index ea546f83f1..0352e72d5f 100644
--- a/hw/alpha_pci.c
+++ b/hw/alpha_pci.c
@@ -128,6 +128,6 @@ void alpha_pci_vga_setup(PCIBus *pci_bus)
/* If VGA is enabled at all, and one of the above didn't work, then
fallback to Standard VGA. */
if (vga_interface_type != VGA_NONE) {
- pci_vga_init(pci_bus);
+ pci_std_vga_init(pci_bus);
}
}