From 2fd9c127563a9b64780340e3161f010377d9500f Mon Sep 17 00:00:00 2001 From: Vinay Verma Date: Sun, 29 Apr 2018 14:08:30 +0530 Subject: [PATCH] power: Fix VNDK Compilation Errors VNDK restrictions doesn't includes standard headers by default, add them explicitly. Change-Id: I4c72a28ffa141ecadcfe47cc7c1f62f2a0c8576e --- power-845.c | 2 ++ power.c | 1 + powerhintparser.c | 1 + utils.c | 1 + 4 files changed, 5 insertions(+) diff --git a/power-845.c b/power-845.c index ca6f421..9248f38 100644 --- a/power-845.c +++ b/power-845.c @@ -37,6 +37,8 @@ #include #include #include +#include +#include #define LOG_TAG "QTI PowerHAL" #include diff --git a/power.c b/power.c index 05a09ba..051cd5a 100644 --- a/power.c +++ b/power.c @@ -36,6 +36,7 @@ #include #include #include +#include #define LOG_TAG "QTI PowerHAL" #include diff --git a/powerhintparser.c b/powerhintparser.c index 7dd5be2..6d8646f 100644 --- a/powerhintparser.c +++ b/powerhintparser.c @@ -32,6 +32,7 @@ #include #include #include +#include #include "powerhintparser.h" #define LOG_TAG "QTI PowerHAL" diff --git a/utils.c b/utils.c index e1e436c..cf8c360 100644 --- a/utils.c +++ b/utils.c @@ -33,6 +33,7 @@ #include #include #include +#include #include "utils.h" #include "list.h"