onboard pci_rom

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1865 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Yinghai Lu 2005-01-13 18:42:22 +00:00
parent d8ad7df700
commit 6308d58c92
1 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#ifndef PCI_ROM_H
#define PCI_ROM_H
#include <arch/byteorder.h>
#include <stddef.h>
@ -30,3 +32,8 @@ struct pci_data {
uint8_t indicator;
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);
#endif