summaryrefslogtreecommitdiffstats
path: root/libion
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2016-09-28 10:07:20 -0700
committerMark Salyzyn <salyzyn@google.com>2016-09-30 12:47:05 -0700
commit66ce3e08c5632a20ea66bde6dd76397041edf034 (patch)
treee77589e0f6c62e8ac1c8faabe2d9dd2934d3ecee /libion
parent0dd4431072cce3c62876b728cb20aa5b77b11a8d (diff)
downloadsystem_core-66ce3e08c5632a20ea66bde6dd76397041edf034.tar.gz
system_core-66ce3e08c5632a20ea66bde6dd76397041edf034.tar.bz2
system_core-66ce3e08c5632a20ea66bde6dd76397041edf034.zip
system/core Replace cutils/log.h with android/log.h
Should use android/log.h instead of cutils/log.h as a good example to all others. Adjust header order to comply with Android Coding standards. Test: Compile Bug: 26552300 Bug: 31289077 Change-Id: I2c9cbbbd64d8dccf2d44356361d9742e4a9b9031
Diffstat (limited to 'libion')
-rw-r--r--libion/ion.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libion/ion.c b/libion/ion.c
index d1984bd06..424776a3c 100644
--- a/libion/ion.c
+++ b/libion/ion.c
@@ -19,16 +19,16 @@
*/
#define LOG_TAG "ion"
-#include <cutils/log.h>
#include <errno.h>
#include <fcntl.h>
+#include <linux/ion.h>
#include <stdio.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/types.h>
-#include <linux/ion.h>
+#include <android/log.h>
#include <ion/ion.h>
int ion_open()