1 /* SPDX-License-Identifier: GPL-2.0-only */
9 typedef struct cmos_write_t cmos_write_t
;
11 /* This represents a pending CMOS write operation. When changing
12 * multiple CMOS parameter values, we first represent the changes as a
13 * list of pending write operations. This allows us to sanity check all
14 * write operations before any of them are performed.
19 cmos_entry_config_t config
;
20 unsigned long long value
;
24 cmos_write_t
*process_input_file(FILE * f
);
25 void do_cmos_writes(cmos_write_t
* list
);
27 extern const char assignment_regex
[];
29 #endif /* INPUT_FILE_H */