summaryrefslogtreecommitdiff
path: root/firmware/export/power.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/power.h')
-rw-r--r--firmware/export/power.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/export/power.h b/firmware/export/power.h
index be8ebda5b0..dc6c09d9f9 100644
--- a/firmware/export/power.h
+++ b/firmware/export/power.h
@@ -19,12 +19,12 @@
19#ifndef _POWER_H_ 19#ifndef _POWER_H_
20#define _POWER_H_ 20#define _POWER_H_
21 21
22#ifdef HAVE_CHARGE_CTRL 22#if CONFIG_CHARGING == CHARGING_CONTROL
23extern bool charger_enabled; 23extern bool charger_enabled;
24void charger_enable(bool on); 24void charger_enable(bool on);
25#endif 25#endif
26 26
27#ifdef HAVE_CHARGING 27#ifdef CONFIG_CHARGING
28bool charger_inserted(void); 28bool charger_inserted(void);
29#endif 29#endif
30 30
@@ -35,7 +35,7 @@ void ide_power_enable(bool on);
35 35
36void power_init(void); 36void power_init(void);
37 37
38# ifdef HAVE_CHARGE_STATE 38# if CONFIG_CHARGING == CHARGING_MONITOR
39bool charging_state(void); 39bool charging_state(void);
40# endif 40# endif
41 41