diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2015-02-04 13:25:37 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2015-02-20 07:56:09 +0100 |
commit | c5163ed83b478a8f4f499a5a0230b1ce50111f71 (patch) | |
tree | 780350b5928a9783da51f8843e556ada0d76615d /src | |
parent | 7255062ea7e890017448a9dd262348f018d491ec (diff) | |
download | coreboot-c5163ed83b478a8f4f499a5a0230b1ce50111f71.tar.xz |
AMD binaryPI: Drop HT3_SUPPORT
Kconfig variable is not implemented.
Also fix broken abuild.
Change-Id: I569f44e97abc570158472ddbd0f890315233f8a6
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/8494
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/amd/pi/00730F01/northbridge.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/northbridge/amd/pi/00730F01/northbridge.c b/src/northbridge/amd/pi/00730F01/northbridge.c index b59ff6c84c..0b6229a6a1 100644 --- a/src/northbridge/amd/pi/00730F01/northbridge.c +++ b/src/northbridge/amd/pi/00730F01/northbridge.c @@ -1171,13 +1171,8 @@ static u32 cpu_bus_scan(device_t dev, u32 max) /* Ok, We need to set the links for that device. * otherwise the device under it will not be scanned */ - int linknum; -#if CONFIG_HT3_SUPPORT - linknum = 8; -#else - linknum = 4; -#endif - add_more_links(cdb_dev, linknum); + + add_more_links(cdb_dev, 4); } family = cpuid_eax(1); |