aboutsummaryrefslogtreecommitdiff
path: root/src/devices
diff options
context:
space:
mode:
authorLuc Verhaegen <libv@skynet.be>2009-05-29 03:44:47 +0000
committerLuc Verhaegen <libv@skynet.be>2009-05-29 03:44:47 +0000
commit43bc5a9c74c701b2a13dbe603c6983a13db622da (patch)
treefa2f438cc8294825d845f8ea0751bb5effbd5a81 /src/devices
parent5c5beb765dce9e5ded2ea1332d86d288ba347dce (diff)
Fix build with CONFIG_*_ROM_RUN.
Last commit broke it due to leftover "void" from prototype. Signed-off-by: Luc Verhaegen <libv@skynet.be> Acked-by: Luc Verhaegen <libv@skynet.be> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4322 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/pci_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/pci_device.c b/src/devices/pci_device.c
index 48c209f022..322463466d 100644
--- a/src/devices/pci_device.c
+++ b/src/devices/pci_device.c
@@ -674,7 +674,7 @@ void pci_dev_init(struct device *dev)
#if CONFIG_CONSOLE_VGA == 1
if ((dev->class>>8) == PCI_CLASS_DISPLAY_VGA)
- vga_console_init(void);
+ vga_console_init();
#endif /* CONFIG_CONSOLE_VGA */
#endif /* CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN */
}