onboard pci_rom


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1865 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/src/include/device/pci_rom.h b/src/include/device/pci_rom.h
index 68c8e71..4d82142 100644
--- a/src/include/device/pci_rom.h
+++ b/src/include/device/pci_rom.h
@@ -1,3 +1,5 @@
+#ifndef PCI_ROM_H
+#define PCI_ROM_H
 #include <arch/byteorder.h>
 #include <stddef.h>
 
@@ -30,3 +32,8 @@
 	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