summaryrefslogtreecommitdiffstats
path: root/healthd/healthd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'healthd/healthd.cpp')
-rw-r--r--healthd/healthd.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/healthd/healthd.cpp b/healthd/healthd.cpp
index 85888c3ca..9b47334d3 100644
--- a/healthd/healthd.cpp
+++ b/healthd/healthd.cpp
@@ -109,10 +109,17 @@ static struct healthd_mode_ops android_ops = {
};
static struct healthd_mode_ops charger_ops = {
+#ifdef CHARGER_NO_UI
+ .init = healthd_mode_nop_init,
+ .preparetowait = healthd_mode_nop_preparetowait,
+ .heartbeat = healthd_mode_nop_heartbeat,
+ .battery_update = healthd_mode_nop_battery_update,
+#else
.init = healthd_mode_charger_init,
.preparetowait = healthd_mode_charger_preparetowait,
.heartbeat = healthd_mode_charger_heartbeat,
.battery_update = healthd_mode_charger_battery_update,
+#endif
};
static struct healthd_mode_ops recovery_ops = {