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>
This commit is contained in:
parent
fc72448a89
commit
7a10c9b106
|
@ -284,31 +284,14 @@
|
||||||
/*
|
/*
|
||||||
* Initialize all families to disabled
|
* Initialize all families to disabled
|
||||||
*/
|
*/
|
||||||
#define OPT_F10_TABLE
|
|
||||||
#define OPT_F12_TABLE
|
|
||||||
#define OPT_F14_TABLE
|
|
||||||
#define OPT_F15_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
|
#define OPT_F15_ID_TABLE
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Install family specific support
|
* 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)
|
#if (OPTION_FAMILY15H_OR == TRUE) || (OPTION_FAMILY15H_TN == TRUE)
|
||||||
#include "OptionFamily15hInstall.h"
|
#include "OptionFamily15hInstall.h"
|
||||||
|
@ -377,9 +360,6 @@ CONST OPTIONS_CONFIG_TOPOLOGY ROMDATA TopologyConfiguration =
|
||||||
*/
|
*/
|
||||||
CONST CPU_SPECIFIC_SERVICES_XLAT ROMDATA CpuSupportedFamiliesArray[] =
|
CONST CPU_SPECIFIC_SERVICES_XLAT ROMDATA CpuSupportedFamiliesArray[] =
|
||||||
{
|
{
|
||||||
OPT_F10_TABLE
|
|
||||||
OPT_F12_TABLE
|
|
||||||
OPT_F14_TABLE
|
|
||||||
OPT_F15_TABLE
|
OPT_F15_TABLE
|
||||||
{0, NULL}
|
{0, NULL}
|
||||||
};
|
};
|
||||||
|
@ -393,9 +373,6 @@ CONST CPU_FAMILY_SUPPORT_TABLE ROMDATA CpuSupportedFamiliesTable =
|
||||||
|
|
||||||
CONST CPU_LOGICAL_ID_FAMILY_XLAT ROMDATA CpuSupportedFamilyIdArray[] =
|
CONST CPU_LOGICAL_ID_FAMILY_XLAT ROMDATA CpuSupportedFamilyIdArray[] =
|
||||||
{
|
{
|
||||||
OPT_F10_ID_TABLE
|
|
||||||
OPT_F12_ID_TABLE
|
|
||||||
OPT_F14_ID_TABLE
|
|
||||||
OPT_F15_ID_TABLE
|
OPT_F15_ID_TABLE
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue