summaryrefslogtreecommitdiffstats
path: root/liblight
diff options
context:
space:
mode:
Diffstat (limited to 'liblight')
-rwxr-xr-xliblight/lights.c6
1 files changed, 3 insertions, 3 deletions
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;