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@skynet.be Acked-by: Luc Verhaegen libv@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 */ }