summaryrefslogtreecommitdiff
path: root/src/vendorcode
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2017-08-24 09:35:42 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2017-08-28 14:37:38 +0000
commit7a10c9b10657cb8c02c11c2f73ff5cfaa262304c (patch)
tree3e0b46ab8a4a74915f6303835c08a5f446b622fa /src/vendorcode
parentfc72448a89f7023d8fc1308d8f7cfb61e6e63aa6 (diff)
downloadcoreboot-7a10c9b10657cb8c02c11c2f73ff5cfaa262304c.tar.xz
AGESA f15tn vendorcode: Remove f10, f12 and f14 references
Files themselves were never committed. Change-Id: I41ebdd98c10b6a80f8e110fb265203a5d06072ef Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/21183 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/vendorcode')
-rw-r--r--src/vendorcode/amd/agesa/f15tn/Include/OptionCpuFamiliesInstall.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/vendorcode/amd/agesa/f15tn/Include/OptionCpuFamiliesInstall.h b/src/vendorcode/amd/agesa/f15tn/Include/OptionCpuFamiliesInstall.h
index fb4da3f464..a3bc05db9a 100644
--- a/src/vendorcode/amd/agesa/f15tn/Include/OptionCpuFamiliesInstall.h
+++ b/src/vendorcode/amd/agesa/f15tn/Include/OptionCpuFamiliesInstall.h
@@ -284,31 +284,14 @@
/*
* Initialize all families to disabled
*/
-#define OPT_F10_TABLE
-#define OPT_F12_TABLE
-#define OPT_F14_TABLE
#define OPT_F15_TABLE
-#define OPT_F10_ID_TABLE
-#define OPT_F12_ID_TABLE
-#define OPT_F14_ID_TABLE
#define OPT_F15_ID_TABLE
/*
* Install family specific support
*/
-#if (OPTION_FAMILY10H == TRUE)
- #include "OptionFamily10hInstall.h"
-#endif
-
-#if (OPTION_FAMILY12H == TRUE)
- #include "OptionFamily12hInstall.h"
-#endif
-
-#if (OPTION_FAMILY14H == TRUE)
- #include "OptionFamily14hInstall.h"
-#endif
#if (OPTION_FAMILY15H_OR == TRUE) || (OPTION_FAMILY15H_TN == TRUE)
#include "OptionFamily15hInstall.h"
@@ -377,9 +360,6 @@ CONST OPTIONS_CONFIG_TOPOLOGY ROMDATA TopologyConfiguration =
*/
CONST CPU_SPECIFIC_SERVICES_XLAT ROMDATA CpuSupportedFamiliesArray[] =
{
- OPT_F10_TABLE
- OPT_F12_TABLE
- OPT_F14_TABLE
OPT_F15_TABLE
{0, NULL}
};
@@ -393,9 +373,6 @@ CONST CPU_FAMILY_SUPPORT_TABLE ROMDATA CpuSupportedFamiliesTable =
CONST CPU_LOGICAL_ID_FAMILY_XLAT ROMDATA CpuSupportedFamilyIdArray[] =
{
- OPT_F10_ID_TABLE
- OPT_F12_ID_TABLE
- OPT_F14_ID_TABLE
OPT_F15_ID_TABLE
};