* set_params * * Set coreboot parameters according to the contents of file 'f'. ****************************************************************************/
| 676 | * Set coreboot parameters according to the contents of file 'f'. |
| 677 | ****************************************************************************/ |
| 678 | static void set_params(FILE * f) |
| 679 | { /* First process the input file. Then perform writes only if there were |
| 680 | * no problems processing the input. Either all values will be written |
| 681 | * successfully or no values will be written. |
| 682 | */ |
| 683 | do_cmos_writes(process_input_file(f)); |
| 684 | } |
| 685 | |
| 686 | /**************************************************************************** |
| 687 | * parse_assignment |
no test coverage detected