summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/battery.h9
-rw-r--r--include/led_pwm.h1
2 files changed, 9 insertions, 1 deletions
diff --git a/include/battery.h b/include/battery.h
index 27e678c0ba..2bf6e7bb06 100644
--- a/include/battery.h
+++ b/include/battery.h
@@ -395,6 +395,15 @@ int battery_device_chemistry(char *dest, int size);
int battery_manufacturer_date(int *year, int *month, int *day);
/**
+ * Read battery manufacturer data.
+ *
+ * @param dest Destination buffer.
+ * @param size Length of destination buffer.
+ * @return non-zero if error.
+ */
+int battery_manufacturer_data(char *data, int size);
+
+/**
* Report the absolute difference between the highest and lowest cell voltage in
* the battery pack, in millivolts. On error or unimplemented, returns '0'.
*/
diff --git a/include/led_pwm.h b/include/led_pwm.h
index d0295b8061..7f286130e7 100644
--- a/include/led_pwm.h
+++ b/include/led_pwm.h
@@ -9,7 +9,6 @@
#include "ec_commands.h"
#ifdef CONFIG_ZEPHYR
-#include "pwm/pwm.h"
#include "drivers/pwm.h"
#endif