From fc4d70454282d831c697e50d7e77bdcd938b2bb4 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Thu, 20 Oct 2011 11:56:21 +0100 Subject: Rename LOGV(_IF) to ALOGV(_IF) DO NOT MERGE See https://android-git.corp.google.com/g/#/c/143865 Bug: 5449033 Change-Id: I73e1ab4f4eadb55e747b3b2be4b6c1824dce7b2c --- liblight/lights.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'liblight') diff --git a/liblight/lights.c b/liblight/lights.c index ee6416a..02187a7 100755 --- a/liblight/lights.c +++ b/liblight/lights.c @@ -37,7 +37,7 @@ static int write_int(char const *path, int value) already_warned = 0; - LOGV("write_int: path %s, value %d", path, value); + ALOGV("write_int: path %s, value %d", path, value); fd = open(path, O_RDWR); if (fd >= 0) { @@ -78,7 +78,7 @@ static int set_light_backlight(struct light_device_t *dev, static int close_lights(struct light_device_t *dev) { - LOGV("close_light is called"); + ALOGV("close_light is called"); if (dev) free(dev); @@ -91,7 +91,7 @@ static int open_lights(const struct hw_module_t *module, char const *name, int (*set_light)(struct light_device_t *dev, struct light_state_t const *state); - LOGV("open_lights: open with %s", name); + ALOGV("open_lights: open with %s", name); if (0 == strcmp(LIGHT_ID_BACKLIGHT, name)) set_light = set_light_backlight; -- cgit v1.1