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
This commit is contained in:
parent
4704dc520b
commit
f5c38c0da6
|
@ -33,9 +33,7 @@ struct pci_data {
|
||||||
uint16_t reserved_2;
|
uint16_t reserved_2;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern struct rom_header * pci_rom_probe(struct device *dev);
|
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_load(struct device *dev, struct rom_header *rom_header);
|
||||||
|
|
||||||
extern void pci_dev_init(struct device *dev);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue