diff options
Diffstat (limited to 'cmds/incident_helper/src/main.cpp')
-rw-r--r-- | cmds/incident_helper/src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmds/incident_helper/src/main.cpp b/cmds/incident_helper/src/main.cpp index 5ebe9bd31be5..5c9a468dea0b 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/CpuFreqParser.h" #include "parsers/CpuInfoParser.h" #include "parsers/KernelWakesParser.h" #include "parsers/PageTypeInfoParser.h" @@ -57,6 +58,8 @@ static TextParserBase* selectParser(int section) { return new KernelWakesParser(); case 2003: return new CpuInfoParser(); + case 2004: + return new CpuFreqParser(); default: return NULL; } |