summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaseer Ahmed <naseer@codeaurora.org>2018-03-06 20:41:14 -0500
committerNaseer Ahmed <naseer@codeaurora.org>2018-03-06 20:41:14 -0500
commit04a804a8f1e96b97ea33823bfb6a1f6ac875499b (patch)
treeefe601ba0110e1ed39b225a371e9a61778761005
parentc4fdf73cfbf86aebc7f39c3d811a4b46aaa80e1d (diff)
downloaddisplay-04a804a8f1e96b97ea33823bfb6a1f6ac875499b.tar.gz
display: Use log.h from VNDK
Change-Id: I8aa8566036a44b1587f5cfe6c745e11a3dd19481
-rw-r--r--gpu_tonemapper/TonemapFactory.cpp2
-rw-r--r--gpu_tonemapper/glengine.cpp2
-rw-r--r--gralloc/gr_adreno_info.cpp2
-rw-r--r--gralloc/gr_allocator.cpp2
-rw-r--r--gralloc/gr_device_impl.cpp2
-rw-r--r--gralloc/gr_ion_alloc.cpp2
-rw-r--r--gralloc/gr_priv_handle.h2
-rw-r--r--hdmi_cec/qhdmi_cec.cpp2
-rw-r--r--libcopybit/copybit.cpp2
-rw-r--r--libcopybit/copybit_c2d.cpp2
-rw-r--r--libcopybit/software_converter.cpp2
-rw-r--r--liblight/lights.c2
-rw-r--r--libqdutils/qdMetaData.cpp2
-rw-r--r--libqdutils/qd_utils.h2
-rw-r--r--libqservice/IQHDMIClient.cpp2
-rw-r--r--libqservice/QService.h2
-rw-r--r--sdm/libs/hwc2/hwc_debugger.h2
17 files changed, 17 insertions, 17 deletions
diff --git a/gpu_tonemapper/TonemapFactory.cpp b/gpu_tonemapper/TonemapFactory.cpp
index 3233682e..db4b8be6 100644
--- a/gpu_tonemapper/TonemapFactory.cpp
+++ b/gpu_tonemapper/TonemapFactory.cpp
@@ -18,7 +18,7 @@
*/
#include "TonemapFactory.h"
-#include <utils/Log.h>
+#include <log/log.h>
#include "Tonemapper.h"
#include "engine.h"
diff --git a/gpu_tonemapper/glengine.cpp b/gpu_tonemapper/glengine.cpp
index 6c94c23a..35e1932c 100644
--- a/gpu_tonemapper/glengine.cpp
+++ b/gpu_tonemapper/glengine.cpp
@@ -18,7 +18,7 @@
*/
#include "glengine.h"
-#include <utils/Log.h>
+#include <log/log.h>
#include "engine.h"
void checkGlError(const char *, int);
diff --git a/gralloc/gr_adreno_info.cpp b/gralloc/gr_adreno_info.cpp
index 85f8437d..ca77b3be 100644
--- a/gralloc/gr_adreno_info.cpp
+++ b/gralloc/gr_adreno_info.cpp
@@ -27,7 +27,7 @@
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <cutils/log.h>
+#include <log/log.h>
#include <cutils/properties.h>
#include <dlfcn.h>
#include <mutex>
diff --git a/gralloc/gr_allocator.cpp b/gralloc/gr_allocator.cpp
index 00a328ce..34a5c037 100644
--- a/gralloc/gr_allocator.cpp
+++ b/gralloc/gr_allocator.cpp
@@ -27,7 +27,7 @@
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <cutils/log.h>
+#include <log/log.h>
#include <algorithm>
#include <vector>
diff --git a/gralloc/gr_device_impl.cpp b/gralloc/gr_device_impl.cpp
index 6129bd33..a26ea81b 100644
--- a/gralloc/gr_device_impl.cpp
+++ b/gralloc/gr_device_impl.cpp
@@ -28,7 +28,7 @@
*/
#define ATRACE_TAG (ATRACE_TAG_GRAPHICS | ATRACE_TAG_HAL)
-#include <cutils/log.h>
+#include <log/log.h>
#include <cutils/trace.h>
#include <sync/sync.h>
#include <utils/Trace.h>
diff --git a/gralloc/gr_ion_alloc.cpp b/gralloc/gr_ion_alloc.cpp
index 0ee3e0a7..33a13abf 100644
--- a/gralloc/gr_ion_alloc.cpp
+++ b/gralloc/gr_ion_alloc.cpp
@@ -29,7 +29,7 @@
#define DEBUG 0
#define ATRACE_TAG (ATRACE_TAG_GRAPHICS | ATRACE_TAG_HAL)
-#include <cutils/log.h>
+#include <log/log.h>
#include <cutils/trace.h>
#include <errno.h>
#include <fcntl.h>
diff --git a/gralloc/gr_priv_handle.h b/gralloc/gr_priv_handle.h
index c0757665..1eb03b81 100644
--- a/gralloc/gr_priv_handle.h
+++ b/gralloc/gr_priv_handle.h
@@ -20,7 +20,7 @@
#ifndef __GR_PRIV_HANDLE_H__
#define __GR_PRIV_HANDLE_H__
-#include <cutils/log.h>
+#include <log/log.h>
#include <hardware/gralloc.h>
#include <hardware/gralloc1.h>
#include <cinttypes>
diff --git a/hdmi_cec/qhdmi_cec.cpp b/hdmi_cec/qhdmi_cec.cpp
index 0923d922..2760334a 100644
--- a/hdmi_cec/qhdmi_cec.cpp
+++ b/hdmi_cec/qhdmi_cec.cpp
@@ -30,7 +30,7 @@
#define DEBUG 0
#define ATRACE_TAG (ATRACE_TAG_GRAPHICS | ATRACE_TAG_HAL)
#include <cstdlib>
-#include <cutils/log.h>
+#include <log/log.h>
#include <errno.h>
#include <fcntl.h>
#include <hardware/hdmi_cec.h>
diff --git a/libcopybit/copybit.cpp b/libcopybit/copybit.cpp
index 80b3cfe6..bd49edc2 100644
--- a/libcopybit/copybit.cpp
+++ b/libcopybit/copybit.cpp
@@ -18,7 +18,7 @@
* limitations under the License.
*/
-#include <cutils/log.h>
+#include <log/log.h>
#include <linux/msm_mdp.h>
#include <linux/fb.h>
diff --git a/libcopybit/copybit_c2d.cpp b/libcopybit/copybit_c2d.cpp
index 240ba26c..63c13790 100644
--- a/libcopybit/copybit_c2d.cpp
+++ b/libcopybit/copybit_c2d.cpp
@@ -17,7 +17,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-#include <cutils/log.h>
+#include <log/log.h>
#include <sys/resource.h>
#include <sys/prctl.h>
diff --git a/libcopybit/software_converter.cpp b/libcopybit/software_converter.cpp
index e5c03b57..1aa3ce60 100644
--- a/libcopybit/software_converter.cpp
+++ b/libcopybit/software_converter.cpp
@@ -27,7 +27,7 @@
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <cutils/log.h>
+#include <log/log.h>
#include <stdlib.h>
#include <errno.h>
#include "software_converter.h"
diff --git a/liblight/lights.c b/liblight/lights.c
index 115b98c0..d5113954 100644
--- a/liblight/lights.c
+++ b/liblight/lights.c
@@ -19,7 +19,7 @@
// #define LOG_NDEBUG 0
-#include <cutils/log.h>
+#include <log/log.h>
#include <cutils/properties.h>
#include <stdint.h>
#include <stdlib.h>
diff --git a/libqdutils/qdMetaData.cpp b/libqdutils/qdMetaData.cpp
index 3ccbc993..5c39133a 100644
--- a/libqdutils/qdMetaData.cpp
+++ b/libqdutils/qdMetaData.cpp
@@ -30,7 +30,7 @@
#include <errno.h>
#include <string.h>
#include <sys/mman.h>
-#include <cutils/log.h>
+#include <log/log.h>
#include <cinttypes>
#include <gralloc_priv.h>
#include "qdMetaData.h"
diff --git a/libqdutils/qd_utils.h b/libqdutils/qd_utils.h
index f3b0c042..d83f2733 100644
--- a/libqdutils/qd_utils.h
+++ b/libqdutils/qd_utils.h
@@ -35,7 +35,7 @@
#include <ctype.h>
#include <fcntl.h>
#include <utils/Errors.h>
-#include <utils/Log.h>
+#include <log/log.h>
#include <linux/fb.h>
#include <sys/ioctl.h>
diff --git a/libqservice/IQHDMIClient.cpp b/libqservice/IQHDMIClient.cpp
index 9f5044a5..6379e574 100644
--- a/libqservice/IQHDMIClient.cpp
+++ b/libqservice/IQHDMIClient.cpp
@@ -26,7 +26,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <utils/Log.h>
+#include <log/log.h>
#include <binder/Parcel.h>
#include "IQHDMIClient.h"
diff --git a/libqservice/QService.h b/libqservice/QService.h
index bd130fa5..6bb4d7d5 100644
--- a/libqservice/QService.h
+++ b/libqservice/QService.h
@@ -32,7 +32,7 @@
#include <utils/Errors.h>
#include <sys/types.h>
-#include <cutils/log.h>
+#include <log/log.h>
#include <binder/IServiceManager.h>
#include <IQService.h>
#include <IQClient.h>
diff --git a/sdm/libs/hwc2/hwc_debugger.h b/sdm/libs/hwc2/hwc_debugger.h
index 04cbfa73..3a3d7872 100644
--- a/sdm/libs/hwc2/hwc_debugger.h
+++ b/sdm/libs/hwc2/hwc_debugger.h
@@ -34,7 +34,7 @@
#include <core/sdm_types.h>
#include <core/debug_interface.h>
-#include <cutils/log.h>
+#include <log/log.h>
#include <utils/Trace.h>
#include <bitset>