1 // SPDX-License-Identifier: BSD-3-Clause
2 //
3 // Copyright(c) 2020 Intel Corporation. All rights reserved.
4 //
5 // Author: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
6 
7 #include <stdbool.h>
8 #include <stdint.h>
9 #include <stdio.h>
10 #include "elf.h"
11 
12 /*
13  * Firmware image context.
14  */
15 struct image {
16 	const char *ldc_out_file;
17 	FILE *ldc_out_fd;
18 
19 	bool verbose;
20 	struct elf_module module;
21 };
22