summaryrefslogtreecommitdiffstats
path: root/layout.c
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2019-06-16 20:22:41 +0200
committerNico Huber <nico.h@gmx.de>2021-06-26 15:57:36 +0000
commit194815a3633498fd27ab3ee216a36233f88f86b4 (patch)
treee00b0a6eb94efe18553d562b7153abc1981a72aa /layout.c
parent78d9c7d02c0eb9720a40d9fe80a4843c064fd3c6 (diff)
downloadflashrom-194815a3633498fd27ab3ee216a36233f88f86b4.tar.gz
flashrom-194815a3633498fd27ab3ee216a36233f88f86b4.tar.bz2
flashrom-194815a3633498fd27ab3ee216a36233f88f86b4.zip
layout: Make `struct layout_include_args` private to `layout.c`
Change-Id: Icbfee68e85429fe41db1cad6b99f25e9f30cd672 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/33545 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Reviewed-by: Peter Marheine <pmarheine@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'layout.c')
-rw-r--r--layout.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/layout.c b/layout.c
index e71f6a40c..9df003516 100644
--- a/layout.c
+++ b/layout.c
@@ -29,6 +29,12 @@ struct flashrom_layout {
struct romentry *head;
};
+struct layout_include_args {
+ char *name;
+ char *file;
+ struct layout_include_args *next;
+};
+
static struct flashrom_layout *global_layout;
struct flashrom_layout *get_global_layout(void)