summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2016-09-28 12:07:20 -0500
committerMark Salyzyn2016-09-30 14:47:05 -0500
commit66ce3e08c5632a20ea66bde6dd76397041edf034 (patch)
treee77589e0f6c62e8ac1c8faabe2d9dd2934d3ecee /libsuspend/autosuspend_wakeup_count.c
parent0dd4431072cce3c62876b728cb20aa5b77b11a8d (diff)
downloadplatform-system-core-66ce3e08c5632a20ea66bde6dd76397041edf034.tar.gz
platform-system-core-66ce3e08c5632a20ea66bde6dd76397041edf034.tar.xz
platform-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 'libsuspend/autosuspend_wakeup_count.c')
-rw-r--r--libsuspend/autosuspend_wakeup_count.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libsuspend/autosuspend_wakeup_count.c b/libsuspend/autosuspend_wakeup_count.c
index 23a029027..d3fb45fcf 100644
--- a/libsuspend/autosuspend_wakeup_count.c
+++ b/libsuspend/autosuspend_wakeup_count.c
@@ -14,6 +14,9 @@
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 16
17#define LOG_TAG "libsuspend"
18//#define LOG_NDEBUG 0
19
17#include <errno.h> 20#include <errno.h>
18#include <fcntl.h> 21#include <fcntl.h>
19#include <pthread.h> 22#include <pthread.h>
@@ -25,9 +28,7 @@
25#include <sys/types.h> 28#include <sys/types.h>
26#include <unistd.h> 29#include <unistd.h>
27 30
28#define LOG_TAG "libsuspend" 31#include <android/log.h>
29//#define LOG_NDEBUG 0
30#include <cutils/log.h>
31 32
32#include "autosuspend_ops.h" 33#include "autosuspend_ops.h"
33 34