diff options
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/amd/sabrina/Kconfig | 2 | ||||
-rw-r--r-- | src/soc/amd/sabrina/cpu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/sabrina/Kconfig b/src/soc/amd/sabrina/Kconfig index 8274512f39..2fd3000111 100644 --- a/src/soc/amd/sabrina/Kconfig +++ b/src/soc/amd/sabrina/Kconfig @@ -235,7 +235,7 @@ config ECAM_MMCONF_BUS_NUMBER config MAX_CPUS int - default 16 + default 8 help Maximum number of threads the platform can have. diff --git a/src/soc/amd/sabrina/cpu.c b/src/soc/amd/sabrina/cpu.c index 9893a8bb30..addbf7ec18 100644 --- a/src/soc/amd/sabrina/cpu.c +++ b/src/soc/amd/sabrina/cpu.c @@ -19,7 +19,7 @@ #include <soc/iomap.h> #include <types.h> -_Static_assert(CONFIG_MAX_CPUS == 16, "Do not override MAX_CPUS. To reduce the number of " +_Static_assert(CONFIG_MAX_CPUS == 8, "Do not override MAX_CPUS. To reduce the number of " "available cores, use the downcore_mode and disable_smt devicetree settings instead."); /* MP and SMM loading initialization */ |