- Cleanups on the romcc side including a pci interface that uses
  fewer registers, and is easier to hardcode.


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@838 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/src/devices/pci_device.c b/src/devices/pci_device.c
index dd24bac..2f1c9bd 100644
--- a/src/devices/pci_device.c
+++ b/src/devices/pci_device.c
@@ -537,7 +537,7 @@
 
 	/* probe all devices on this bus with some optimization for non-existance and 
 	   single funcion devices */
-	for (devfn = 0; devfn < 0xff; devfn++) {
+	for (devfn = 0; devfn <= 0xff; devfn++) {
 		struct device dummy;
 		uint32_t id, class;
 		uint8_t cmd, tmp, hdr_type;