summaryrefslogtreecommitdiff
path: root/cmds/incident_helper/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/incident_helper/src/main.cpp')
-rw-r--r--cmds/incident_helper/src/main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmds/incident_helper/src/main.cpp b/cmds/incident_helper/src/main.cpp
index c8a0883d493c..ab92473b8ba3 100644
--- a/cmds/incident_helper/src/main.cpp
+++ b/cmds/incident_helper/src/main.cpp
@@ -16,6 +16,7 @@
#define LOG_TAG "incident_helper"
+#include "parsers/BatteryTypeParser.h"
#include "parsers/CpuFreqParser.h"
#include "parsers/CpuInfoParser.h"
#include "parsers/KernelWakesParser.h"
@@ -63,6 +64,8 @@ static TextParserBase* selectParser(int section) {
return new CpuInfoParser();
case 2004:
return new CpuFreqParser();
+ case 2006:
+ return new BatteryTypeParser();
default:
return NULL;
}