summaryrefslogtreecommitdiffstats
path: root/power
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-04 20:07:20 +0000
committerSteve Block <steveblock@google.com>2012-01-04 20:07:20 +0000
commit6f211ce723f18da2bb0881a19d48fc51c32bcbf4 (patch)
tree4e85d4c331469655e99d86a0606601a666ac32b2 /power
parentb381b932acfa441da5607f37ac4ef6573ed5be96 (diff)
downloadhardware_libhardware_legacy-6f211ce723f18da2bb0881a19d48fc51c32bcbf4.zip
hardware_libhardware_legacy-6f211ce723f18da2bb0881a19d48fc51c32bcbf4.tar.gz
hardware_libhardware_legacy-6f211ce723f18da2bb0881a19d48fc51c32bcbf4.tar.bz2
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156801 Bug: 5449033 Change-Id: I21aea046270c8700d349a4181c559d1b05333a1b
Diffstat (limited to 'power')
-rw-r--r--power/power.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/power/power.c b/power/power.c
index 927d75a..bfdaf5a 100644
--- a/power/power.c
+++ b/power/power.c
@@ -111,7 +111,7 @@ acquire_wake_lock(int lock, const char* id)
{
initialize_fds();
-// LOGI("acquire_wake_lock lock=%d id='%s'\n", lock, id);
+// ALOGI("acquire_wake_lock lock=%d id='%s'\n", lock, id);
if (g_error) return g_error;
@@ -132,7 +132,7 @@ release_wake_lock(const char* id)
{
initialize_fds();
-// LOGI("release_wake_lock id='%s'\n", id);
+// ALOGI("release_wake_lock id='%s'\n", id);
if (g_error) return g_error;
@@ -143,7 +143,7 @@ release_wake_lock(const char* id)
int
set_last_user_activity_timeout(int64_t delay)
{
-// LOGI("set_last_user_activity_timeout delay=%d\n", ((int)(delay)));
+// ALOGI("set_last_user_activity_timeout delay=%d\n", ((int)(delay)));
int fd = open(AUTO_OFF_TIMEOUT_DEV, O_RDWR);
if (fd >= 0) {
@@ -164,11 +164,11 @@ set_screen_state(int on)
{
QEMU_FALLBACK(set_screen_state(on));
- LOGI("*** set_screen_state %d", on);
+ ALOGI("*** set_screen_state %d", on);
initialize_fds();
- //LOGI("go_to_sleep eventTime=%lld now=%lld g_error=%s\n", eventTime,
+ //ALOGI("go_to_sleep eventTime=%lld now=%lld g_error=%s\n", eventTime,
// systemTime(), strerror(g_error));
if (g_error)