15 lines
251 B
C
15 lines
251 B
C
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#include <board/config.h>
|
|
|
|
#include <board/battery.h>
|
|
#include <common/debug.h>
|
|
|
|
/**
|
|
* Reset the EC configuration data.
|
|
*/
|
|
void config_reset(void) {
|
|
battery_reset();
|
|
INFO("Reset configuration\n");
|
|
}
|