amd/amdht: Compile in multiprocessor support when selected
Fix multiprocessor support not being compiled in when selected via Kconfig on AMD systems. Change-Id: I44c22f2e11096247285b0fb469ccf51963eace2b Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Reviewed-on: http://review.coreboot.org/8268 Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
367fe8cac1
commit
88d213a63b
|
@ -1,6 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* This file is part of the coreboot project.
|
* This file is part of the coreboot project.
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
||||||
* Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
|
* Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -28,7 +29,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Single CPU system? */
|
/* Single CPU system? */
|
||||||
#if CONFIG_MAX_PHYSICAL_CPUS
|
#if (CONFIG_MAX_PHYSICAL_CPUS == 1)
|
||||||
|
/* FIXME
|
||||||
|
* This #define is used by other #included .c files
|
||||||
|
* When set, multiprocessor support is completely disabled
|
||||||
|
*/
|
||||||
#define HT_BUILD_NC_ONLY 1
|
#define HT_BUILD_NC_ONLY 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue