summaryrefslogtreecommitdiffstats
path: root/modules/gralloc
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:25:12 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:31:17 +0000
commitcee8501c1623765d5287fcd440fbf8001b9de183 (patch)
treeb37e7ab8ac12b3ed8270c27c286e704dac23f8b1 /modules/gralloc
parent922f9e6e5f11faba43bc06b018cd66a0935bf9fb (diff)
downloadhardware_libhardware-cee8501c1623765d5287fcd440fbf8001b9de183.zip
hardware_libhardware-cee8501c1623765d5287fcd440fbf8001b9de183.tar.gz
hardware_libhardware-cee8501c1623765d5287fcd440fbf8001b9de183.tar.bz2
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: I98e83cc9d22f0ea8fbf397ccccd9ce7773119551
Diffstat (limited to 'modules/gralloc')
-rw-r--r--modules/gralloc/mapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gralloc/mapper.cpp b/modules/gralloc/mapper.cpp
index 33d0958..ec333dc 100644
--- a/modules/gralloc/mapper.cpp
+++ b/modules/gralloc/mapper.cpp
@@ -57,7 +57,7 @@ static int gralloc_map(gralloc_module_t const* module,
return -errno;
}
hnd->base = intptr_t(mappedAddress) + hnd->offset;
- //LOGD("gralloc_map() succeeded fd=%d, off=%d, size=%d, vaddr=%p",
+ //ALOGD("gralloc_map() succeeded fd=%d, off=%d, size=%d, vaddr=%p",
// hnd->fd, hnd->offset, hnd->size, mappedAddress);
}
*vaddr = (void*)hnd->base;
@@ -71,7 +71,7 @@ static int gralloc_unmap(gralloc_module_t const* module,
if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)) {
void* base = (void*)hnd->base;
size_t size = hnd->size;
- //LOGD("unmapping from %p, size=%d", base, size);
+ //ALOGD("unmapping from %p, size=%d", base, size);
if (munmap(base, size) < 0) {
LOGE("Could not unmap %s", strerror(errno));
}