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 <[email protected]>
Acked-by: Stefan Reinauer <[email protected]>



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


-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to