diff options
author | Eric Biederman <ebiederm@xmission.com> | 2004-10-27 18:54:13 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2004-10-27 18:54:13 +0000 |
commit | 79186eaecdf61d0d53618d1c5d26a6e66850c1ff (patch) | |
tree | 6562fb25d1d6bd1771256aff96f00e4dde241bad /src/northbridge | |
parent | a58cd524fb12fe26ecb73147b1977bf4ec72b74c (diff) | |
download | coreboot-79186eaecdf61d0d53618d1c5d26a6e66850c1ff.tar.xz |
- Look for all 8 possible cpus
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1724 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/amd/amdk8/northbridge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/amdk8/northbridge.c b/src/northbridge/amd/amdk8/northbridge.c index 200877cec2..1222b290f6 100644 --- a/src/northbridge/amd/amdk8/northbridge.c +++ b/src/northbridge/amd/amdk8/northbridge.c @@ -714,7 +714,7 @@ static unsigned int cpu_bus_scan(device_t dev, unsigned int max) /* Find which cpus are present */ cpu_bus = &dev->link[0]; - for(i = 0; i < 7; i++) { + for(i = 0; i < 8; i++) { device_t dev, cpu; struct device_path cpu_path; |