[coreboot] [v2] r4462 - trunk/coreboot-v2/src/include/device

svn at coreboot.org svn at coreboot.org
Wed Jul 22 03:42:13 CEST 2009


Author: stepan
Date: 2009-07-22 03:42:13 +0200 (Wed, 22 Jul 2009)
New Revision: 4462

Modified:
   trunk/coreboot-v2/src/include/device/pci_rom.h
Log:
Fix a redundant declaration warning (trivial)

src/include/device/pci.h:75: warning: redundant redeclaration of 'pci_dev_init'
src/include/device/pci_rom.h:39: warning: previous declaration of 'pci_dev_init' was here

Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>



Modified: trunk/coreboot-v2/src/include/device/pci_rom.h
===================================================================
--- trunk/coreboot-v2/src/include/device/pci_rom.h	2009-07-22 01:11:37 UTC (rev 4461)
+++ trunk/coreboot-v2/src/include/device/pci_rom.h	2009-07-22 01:42:13 UTC (rev 4462)
@@ -33,9 +33,7 @@
 	uint16_t	reserved_2;
 };
 
-extern struct rom_header * pci_rom_probe(struct device *dev);
-extern struct rom_header *pci_rom_load(struct device *dev, struct rom_header *rom_header);
+struct rom_header *pci_rom_probe(struct device *dev);
+struct rom_header *pci_rom_load(struct device *dev, struct rom_header *rom_header);
 
-extern void pci_dev_init(struct device *dev);
-
 #endif





More information about the coreboot mailing list