summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2014-05-16 13:11:01 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2014-05-16 13:11:01 +0800
commitfde5411c6c3b638def7f45996e015c075a2d8541 (patch)
tree026fd6d17cbc76bfa841049e91e8bc5d855c1ef5
parent16c69b09618c47543a9d60a076d3793c22abef5a (diff)
downloadlibhardware-linaro-juice-master-20140515.tar.gz
framebuffer.cpp: fix to use ALOGE instead of LOGElinaro-juice-master-20140515
since LOGE was not defined there Change-Id: I228eadfd476c391a4f34b2f4de1f0a9286464a1d Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
-rw-r--r--modules/gralloc/framebuffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gralloc/framebuffer.cpp b/modules/gralloc/framebuffer.cpp
index a1ded497..b7ba3b1a 100644
--- a/modules/gralloc/framebuffer.cpp
+++ b/modules/gralloc/framebuffer.cpp
@@ -98,7 +98,7 @@ static int fb_post(struct framebuffer_device_t* dev, buffer_handle_t buffer)
m->info.activate = FB_ACTIVATE_VBL;
m->info.yoffset = offset / m->finfo.line_length;
if (ioctl(m->framebuffer->fd, FBIOPAN_DISPLAY, &m->info) == -1) {
- LOGE("FBIOPAN_DISPLAY failed");
+ ALOGE("FBIOPAN_DISPLAY failed");
m->base.unlock(&m->base, buffer);
return -errno;
}