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
This commit is contained in:
Luc Verhaegen 2009-05-29 03:44:47 +00:00
parent 5c5beb765d
commit 43bc5a9c74
1 changed files with 1 additions and 1 deletions

View File

@ -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 */
}