Attention is currently required from: Stefan Reinauer.
Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68692 )
Change subject: ifdtool: Drop chipset without IFD ......................................................................
ifdtool: Drop chipset without IFD
Those chipsets do not have an IFD and where not used within the code.
Change-Id: I999e5e5d2063b8d33819fb22296ed486e1194cbb Signed-off-by: Patrick Rudolph patrick.rudolph@9elements.com --- M util/ifdtool/ifdtool.c M util/ifdtool/ifdtool.h 2 files changed, 12 insertions(+), 12 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/92/68692/1
diff --git a/util/ifdtool/ifdtool.c b/util/ifdtool/ifdtool.c index 043e6ee..624ea72 100644 --- a/util/ifdtool/ifdtool.c +++ b/util/ifdtool/ifdtool.c @@ -72,12 +72,6 @@ /* port from flashrom */ static const char *const ich_chipset_names[] = { "Unknown ICH", - "ICH", - "ICH2345", - "ICH6", - "SCH U", - "Atom E6xx", - "Atom S1220 S1240 S1260", "ICH7", "ICH8", "ICH9", diff --git a/util/ifdtool/ifdtool.h b/util/ifdtool/ifdtool.h index dbd67f7..0a3444f 100644 --- a/util/ifdtool/ifdtool.h +++ b/util/ifdtool/ifdtool.h @@ -13,12 +13,6 @@ /* port from flashrom */ enum ich_chipset { CHIPSET_ICH_UNKNOWN, - CHIPSET_ICH, - CHIPSET_ICH2345, - CHIPSET_ICH6, - CHIPSET_POULSBO, /* SCH U* */ - CHIPSET_TUNNEL_CREEK, /* Atom E6xx */ - CHIPSET_CENTERTON, /* Atom S1220 S1240 S1260 */ CHIPSET_ICH7, CHIPSET_ICH8, CHIPSET_ICH9,