Don't try to set fixed resources.  Trivial.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4918 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/src/devices/pci_device.c b/src/devices/pci_device.c
index 1788044..2360028 100644
--- a/src/devices/pci_device.c
+++ b/src/devices/pci_device.c
@@ -479,6 +479,11 @@
 		return;
 	}
 
+	/* If this resource is fixed don't worry about it. */
+	if (resource->flags & IORESOURCE_FIXED) {
+		return;
+	}
+
 	/* If I have already stored this resource don't worry about it. */
 	if (resource->flags & IORESOURCE_STORED) {
 		return;