summaryrefslogtreecommitdiffstats
path: root/src/include/device/pci_rom.h
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-07-22 01:42:13 +0000
committerStefan Reinauer <stepan@openbios.org>2009-07-22 01:42:13 +0000
commitf5c38c0da6c678862438d16c36e792bdca17b73f (patch)
tree60308b875e9508d44c9a82ddb4ee2462a20572bf /src/include/device/pci_rom.h
parent4704dc520b1d5eb8ae730b336ee5f6b7401f7dfc (diff)
downloadcoreboot-f5c38c0da6c678862438d16c36e792bdca17b73f.tar.gz
coreboot-f5c38c0da6c678862438d16c36e792bdca17b73f.tar.bz2
coreboot-f5c38c0da6c678862438d16c36e792bdca17b73f.zip
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@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4462 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/device/pci_rom.h')
-rw-r--r--src/include/device/pci_rom.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/device/pci_rom.h b/src/include/device/pci_rom.h
index e0cbf4080680..f2683410fde4 100644
--- a/src/include/device/pci_rom.h
+++ b/src/include/device/pci_rom.h
@@ -33,9 +33,7 @@ struct pci_data {
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);
-
-extern void pci_dev_init(struct device *dev);
+struct rom_header *pci_rom_probe(struct device *dev);
+struct rom_header *pci_rom_load(struct device *dev, struct rom_header *rom_header);
#endif