diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2012-05-01 11:13:52 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-05-01 21:20:21 +0200 |
commit | 2c41c4027f50673826a6c0ec2f1b066e748f5c6d (patch) | |
tree | 34895497868b2fb2dd37f0eb99949257d2a7860e /src/mainboard/intel | |
parent | 816d081760d4cccf0db0c952728f5ec6926d6c85 (diff) |
Drop CONFIG_MAX_PHYSICAL_CPUS on non-AMD boards
CONFIG_MAX_PHYSICAL_CPUS is defined by quite a number of
mainboards whithout any code actually using the variable.
Hence, drop MAX_PHYSICAL_CPUS from Kconfig for those boards.
In the long run we should drop CONFIG_MAX_PHYSICAL_CPUS use
completely and make the code dynamic or depend on CONFIG_MAX_CPUS
instead.
Change-Id: I37dcc74d245ddba5186b96bd82220dacb6f4d323
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/984
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/intel')
-rw-r--r-- | src/mainboard/intel/d945gclf/Kconfig | 4 | ||||
-rw-r--r-- | src/mainboard/intel/eagleheights/Kconfig | 4 | ||||
-rw-r--r-- | src/mainboard/intel/emeraldlake2/Kconfig | 4 | ||||
-rw-r--r-- | src/mainboard/intel/xe7501devkit/Kconfig | 4 |
4 files changed, 0 insertions, 16 deletions
diff --git a/src/mainboard/intel/d945gclf/Kconfig b/src/mainboard/intel/d945gclf/Kconfig index 32ef3e1df8..32da3878c4 100644 --- a/src/mainboard/intel/d945gclf/Kconfig +++ b/src/mainboard/intel/d945gclf/Kconfig @@ -62,8 +62,4 @@ config MAX_CPUS int default 4 -config MAX_PHYSICAL_CPUS - int - default 2 - endif # BOARD_INTEL_D945GCLF diff --git a/src/mainboard/intel/eagleheights/Kconfig b/src/mainboard/intel/eagleheights/Kconfig index 00aa1aedb4..7722ad2b67 100644 --- a/src/mainboard/intel/eagleheights/Kconfig +++ b/src/mainboard/intel/eagleheights/Kconfig @@ -51,8 +51,4 @@ config MAX_CPUS int default 4 -config MAX_PHYSICAL_CPUS - int - default 2 - endif # BOARD_INTEL_EAGLEHEIGHTS diff --git a/src/mainboard/intel/emeraldlake2/Kconfig b/src/mainboard/intel/emeraldlake2/Kconfig index 002ae2a86c..9e4f34746d 100644 --- a/src/mainboard/intel/emeraldlake2/Kconfig +++ b/src/mainboard/intel/emeraldlake2/Kconfig @@ -39,10 +39,6 @@ config MAX_CPUS int default 16 -config MAX_PHYSICAL_CPUS - int - default 8 - config VGA_BIOS_FILE string default "pci8086,0166.rom" diff --git a/src/mainboard/intel/xe7501devkit/Kconfig b/src/mainboard/intel/xe7501devkit/Kconfig index a743469cfa..3f314a623b 100644 --- a/src/mainboard/intel/xe7501devkit/Kconfig +++ b/src/mainboard/intel/xe7501devkit/Kconfig @@ -32,8 +32,4 @@ config MAX_CPUS int default 2 -config MAX_PHYSICAL_CPUS - int - default 2 - endif # BOARD_INTEL_XE7501DEVKIT |