[coreboot] [v2] r4322 - trunk/coreboot-v2/src/devices

svn at coreboot.org svn at coreboot.org
Fri May 29 05:44:47 CEST 2009


Author: libv
Date: 2009-05-29 05:44:47 +0200 (Fri, 29 May 2009)
New Revision: 4322

Modified:
   trunk/coreboot-v2/src/devices/pci_device.c
Log:
Fix build with CONFIG_*_ROM_RUN.

Last commit broke it due to leftover "void" from prototype.

Signed-off-by: Luc Verhaegen <libv at skynet.be>
Acked-by: Luc Verhaegen <libv at skynet.be>

Modified: trunk/coreboot-v2/src/devices/pci_device.c
===================================================================
--- trunk/coreboot-v2/src/devices/pci_device.c	2009-05-29 03:04:16 UTC (rev 4321)
+++ trunk/coreboot-v2/src/devices/pci_device.c	2009-05-29 03:44:47 UTC (rev 4322)
@@ -674,7 +674,7 @@
 
 #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 */
 }





More information about the coreboot mailing list