diff options
author | Martin Roth <martinroth@google.com> | 2015-11-26 21:51:03 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-12-01 16:28:07 +0100 |
commit | d45a3477b79df14ed13a64e580a26380ebfb2565 (patch) | |
tree | 1d02c6983ffe73d4506c1f867c142a325be139e4 | |
parent | 317b58234ab79be65320f0acb00b6990a8cc7b51 (diff) | |
download | coreboot-d45a3477b79df14ed13a64e580a26380ebfb2565.tar.gz coreboot-d45a3477b79df14ed13a64e580a26380ebfb2565.tar.bz2 coreboot-d45a3477b79df14ed13a64e580a26380ebfb2565.zip |
amd/pi/00630F01: Drop HT3_SUPPORT
The Kconfig symbol CONFIG_HT3_SUPPORT is not implemented.
This mirrors commit c5163ed8 (AMD binaryPI: Drop HT3_SUPPORT)
Change-Id: I2682d3b620e2cee613c7421622a8c79db5ba3a86
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12556
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
-rw-r--r-- | src/northbridge/amd/pi/00630F01/northbridge.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/northbridge/amd/pi/00630F01/northbridge.c b/src/northbridge/amd/pi/00630F01/northbridge.c index 9f55874db1dd..2809f2f0e22d 100644 --- a/src/northbridge/amd/pi/00630F01/northbridge.c +++ b/src/northbridge/amd/pi/00630F01/northbridge.c @@ -1039,13 +1039,7 @@ static void cpu_bus_scan(device_t dev) /* Ok, We need to set the links for that device. * otherwise the device under it will not be scanned */ - int linknum; -#if IS_ENABLED(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); |