From 858f96d28d8d0aeffe58e1d4d1d559ad161aab66 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Tue, 17 Sep 2013 22:01:48 -0500 Subject: [PATCH] model_106cx: don't blindly set Kconfig settings The CPU_ADDR_BITS was being unconditionally set. Don't do that. BUG=None BRANCH=None TEST=Built bayleybay and can now set CPU_ADDR_BITS properly. Change-Id: Idbc63328fade8f5f05f7f46282139b86e6694989 Signed-off-by: Aaron Durbin Reviewed-on: https://chromium-review.googlesource.com/169711 Reviewed-by: Duncan Laurie --- src/cpu/intel/model_106cx/Kconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cpu/intel/model_106cx/Kconfig b/src/cpu/intel/model_106cx/Kconfig index e26bf1fea5..75161061bd 100644 --- a/src/cpu/intel/model_106cx/Kconfig +++ b/src/cpu/intel/model_106cx/Kconfig @@ -7,7 +7,10 @@ config CPU_INTEL_MODEL_106CX select AP_IN_SIPI_WAIT select TSC_SYNC_MFENCE +if CPU_INTEL_MODEL_106CX + config CPU_ADDR_BITS int default 32 +endif