diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2022-10-22 10:31:16 +0200 |
---|---|---|
committer | Lean Sheng Tan <sheng.tan@9elements.com> | 2023-02-02 13:20:19 +0000 |
commit | 09b136cfe86ac62b1cb6fa96a33ad7c977383d82 (patch) | |
tree | c354f985c91feb9df2a8da5e49297c8476ed5412 /util | |
parent | be25f96c2d22cf348b0c47f941bea07f497c2bb8 (diff) |
ifdtool: Drop chipset without IFD
Drop unused chipsets that do not use an IFD.
Change-Id: I999e5e5d2063b8d33819fb22296ed486e1194cbb
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68692
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'util')
-rw-r--r-- | util/ifdtool/ifdtool.c | 7 | ||||
-rw-r--r-- | util/ifdtool/ifdtool.h | 7 |
2 files changed, 0 insertions, 14 deletions
diff --git a/util/ifdtool/ifdtool.c b/util/ifdtool/ifdtool.c index 4048699242..350757ea38 100644 --- a/util/ifdtool/ifdtool.c +++ b/util/ifdtool/ifdtool.c @@ -74,13 +74,6 @@ static const struct region_name region_names[MAX_REGIONS] = { /* 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", "ICH10", diff --git a/util/ifdtool/ifdtool.h b/util/ifdtool/ifdtool.h index 7379fdc907..3ad8570981 100644 --- a/util/ifdtool/ifdtool.h +++ b/util/ifdtool/ifdtool.h @@ -14,13 +14,6 @@ enum ifd_version { /* 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, CHIPSET_ICH10, |