The epia now works.

Now to fix the ram ...


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1159 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/src/devices/pci_device.c b/src/devices/pci_device.c
index c387f35..a4789d2 100644
--- a/src/devices/pci_device.c
+++ b/src/devices/pci_device.c
@@ -174,6 +174,7 @@
 
 	/* FIXME handle bridges without some of the optional resources */
 
+	printk_spew("%s: path %s\n", __FUNCTION__, dev_path(dev));
 	/* Initialize the io space constraints on the current bus */
 	dev->resource[reg].base  = 0;
 	dev->resource[reg].size  = 0;
@@ -213,6 +214,7 @@
 	reg++;
 
 	dev->resources = reg;
+	printk_spew("DONE %s: path %s\n", __FUNCTION__, dev_path(dev));
 }
 
 
@@ -630,6 +632,7 @@
 	uint32_t buses;
 	uint16_t cr;
 	
+	printk_spew("%s: dev %p, max %d\n", __FUNCTION__, dev, max);
 	bus = &dev->link[0];
 	dev->links = 1;
 
@@ -673,5 +676,6 @@
 	pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
 	pci_write_config16(dev, PCI_COMMAND, cr);
 		
+	printk_spew("%s returns max %d\n", __FUNCTION__, max);
 	return max;
 }