diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-07-22 01:42:13 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-07-22 01:42:13 +0000 |
commit | f5c38c0da6c678862438d16c36e792bdca17b73f (patch) | |
tree | 60308b875e9508d44c9a82ddb4ee2462a20572bf /src/include | |
parent | 4704dc520b1d5eb8ae730b336ee5f6b7401f7dfc (diff) | |
download | coreboot-f5c38c0da6c678862438d16c36e792bdca17b73f.tar.xz |
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')
-rw-r--r-- | src/include/device/pci_rom.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/device/pci_rom.h b/src/include/device/pci_rom.h index e0cbf40806..f2683410fd 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 |