ifdtool: merge region_filenames with region_name(s)

There is no reason to keep a separate region_filenames array,
so I merge it into region_name(s).

This commit is one separated from the original I6d05418c.

Change-Id: I38489c6d3b3c161e9b0281188e6cdd0b62e38335
Signed-off-by: Bill XIE <persmule@gmail.com>
Reviewed-on: https://review.coreboot.org/21509
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Bill XIE
2017-09-12 11:31:37 +08:00
committed by Nico Huber
parent fa5f99430d
commit 1bf6506e97
2 changed files with 11 additions and 22 deletions

View File

@ -142,4 +142,5 @@ typedef struct {
struct region_name {
const char *pretty;
const char *terse;
const char *filename;
};