aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorEric Biederman <ebiederm@xmission.com>2004-10-19 23:35:53 +0000
committerEric Biederman <ebiederm@xmission.com>2004-10-19 23:35:53 +0000
commitabed01d81d0c55848232a9ebd9bb4c55d036f45d (patch)
tree45d8cb1a192cb0d2073de4ef878f3ed2c8778469 /src/northbridge
parent812688bf3cef16d8d431a206e9ceea24e5e87746 (diff)
- Fix typo with reversing memory resources.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1692 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/amd/amdk8/northbridge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/amdk8/northbridge.c b/src/northbridge/amd/amdk8/northbridge.c
index ca5dcd82a3..e7f7f57238 100644
--- a/src/northbridge/amd/amdk8/northbridge.c
+++ b/src/northbridge/amd/amdk8/northbridge.c
@@ -590,7 +590,7 @@ static void pci_domain_set_resources(device_t dev)
/* Now place the memory as high up as it will go */
mem2->base = resource_max(mem2);
mem1->limit = mem2->base - 1;
- mem1->base = resource_max(mem2);
+ mem1->base = resource_max(mem1);
}
else {
/* Place the resources as high up as they will go */