This patch tries to fix compilation when you select EXPERT in make menuconfig.
If I select Expert mode in make menuconfig I couldn't compile because it complained of 2 missing configuration constants. I hope this is the right solution, but haven't really checked that the related code in src/northbridge/amd/amdht/h3finit.c is correct. Signed-off-by: Xavi Drudis Ferran <[email protected]> --- --- coreboot-disupducode/src/northbridge/amd/Kconfig 2011-02-26 00:01:01.000000000 +0100 +++ coreboot-expert/src/northbridge/amd/Kconfig 2011-02-26 03:02:15.000000000 +0100 @@ -24,8 +24,12 @@ config LIMIT_HT_SPEED_200 bool "Limit HT frequency to 200MHz" +config LIMIT_HT_SPEED_300 + bool "Limit HT frequency to 300MHz" config LIMIT_HT_SPEED_400 bool "Limit HT frequency to 400MHz" +config LIMIT_HT_SPEED_500 + bool "Limit HT frequency to 500MHz" config LIMIT_HT_SPEED_600 bool "Limit HT frequency to 600MHz" config LIMIT_HT_SPEED_800
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

