Use new logging macro names

Change-Id: Id0f0e5cb255bbcbb3885f725a5bbe0b911d559e2
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index 64f7faf..e5babe1 100644
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -24,7 +24,7 @@
 #ifndef LOG_NDEBUG_FUNCTION
 #define LOGFUNC(...) ((void)0)
 #else
-#define LOGFUNC(...) (LOGV(__VA_ARGS__))
+#define LOGFUNC(...) (ALOGV(__VA_ARGS__))
 #endif
 
 #include <errno.h>
@@ -677,7 +677,7 @@
     out_frame = data->out_chans * samp_size;
 
     if (out_frame >= in_frame) {
-        LOGE("BUG: remove_channels_from_buf() can not add channels to a buffer.\n");
+        ALOGE("BUG: remove_channels_from_buf() can not add channels to a buffer.\n");
         return;
     }
 
@@ -709,14 +709,14 @@
         br->in_chans = 2;
         br->out_chans = 1;
     } else
-        LOGE("Could not allocate memory for struct buffer_remix\n");
+        ALOGE("Could not allocate memory for struct buffer_remix\n");
 
     if (in->buffer) {
         size_t chans = (br->in_chans > br->out_chans) ? br->in_chans : br->out_chans;
         free(in->buffer);
         in->buffer = malloc(in->config.period_size * br->sample_size * chans);
         if (!in->buffer)
-            LOGE("Could not reallocate memory for input buffer\n");
+            ALOGE("Could not reallocate memory for input buffer\n");
     }
 
     if (in->remix_at_driver)
@@ -792,7 +792,7 @@
 
 static int start_call(struct omap4_audio_device *adev)
 {
-    LOGE("Opening modem PCMs");
+    ALOGE("Opening modem PCMs");
     LOGFUNC("%s(%p)", __FUNCTION__, adev);
 
     pcm_config_vx.rate = VX_NB_SAMPLING_RATE;
@@ -801,7 +801,7 @@
     if (adev->pcm_modem_dl == NULL) {
         adev->pcm_modem_dl = pcm_open(0, PORT_MODEM, PCM_OUT, &pcm_config_vx);
         if (!pcm_is_ready(adev->pcm_modem_dl)) {
-            LOGE("cannot open PCM modem DL stream: %s", pcm_get_error(adev->pcm_modem_dl));
+            ALOGE("cannot open PCM modem DL stream: %s", pcm_get_error(adev->pcm_modem_dl));
             goto err_open_dl;
         }
     }
@@ -809,7 +809,7 @@
     if (adev->pcm_modem_ul == NULL) {
         adev->pcm_modem_ul = pcm_open(0, PORT_MODEM, PCM_IN, &pcm_config_vx);
         if (!pcm_is_ready(adev->pcm_modem_ul)) {
-            LOGE("cannot open PCM modem UL stream: %s", pcm_get_error(adev->pcm_modem_ul));
+            ALOGE("cannot open PCM modem UL stream: %s", pcm_get_error(adev->pcm_modem_ul));
             goto err_open_ul;
         }
     }
@@ -831,7 +831,7 @@
 
 static void end_call(struct omap4_audio_device *adev)
 {
-    LOGE("Closing modem PCMs");
+    ALOGE("Closing modem PCMs");
     LOGFUNC("%s(%p)", __FUNCTION__, adev);
 
     pcm_stop(adev->pcm_modem_dl);
@@ -963,7 +963,7 @@
     LOGFUNC("%s(%p)", __FUNCTION__, adev);
 
     if (adev->mode == AUDIO_MODE_IN_CALL) {
-        LOGE("Entering IN_CALL state, in_call=%d", adev->in_call);
+        ALOGE("Entering IN_CALL state, in_call=%d", adev->in_call);
         if (!adev->in_call) {
             force_all_standby(adev);
             /* force earpiece route for in call state if speaker is the
@@ -987,7 +987,7 @@
             adev->in_call = 1;
         }
     } else {
-        LOGE("Leaving IN_CALL state, in_call=%d, mode=%d",
+        ALOGE("Leaving IN_CALL state, in_call=%d, mode=%d",
              adev->in_call, adev->mode);
         if (adev->in_call) {
             adev->in_call = 0;
@@ -1321,7 +1321,7 @@
     out->pcm = pcm_open(card, port, PCM_OUT | PCM_MMAP, &out->config);
 
     if (!pcm_is_ready(out->pcm)) {
-        LOGE("cannot open pcm_out driver: %s", pcm_get_error(out->pcm));
+        ALOGE("cannot open pcm_out driver: %s", pcm_get_error(out->pcm));
         pcm_close(out->pcm);
         adev->active_output = NULL;
         return -ENOMEM;
@@ -1462,7 +1462,7 @@
         buffer->time_stamp.tv_sec  = 0;
         buffer->time_stamp.tv_nsec = 0;
         buffer->delay_ns           = 0;
-        LOGV("get_playback_delay(): pcm_get_htimestamp error,"
+        ALOGV("get_playback_delay(): pcm_get_htimestamp error,"
                 "setting playbackTimestamp to 0");
         return status;
     }
@@ -1827,7 +1827,7 @@
     if (in->remix_at_driver)
         in->config.channels = in->remix_at_driver->out_chans;
     if (!pcm_is_ready(in->pcm)) {
-        LOGE("cannot open pcm_in driver: %s", pcm_get_error(in->pcm));
+        ALOGE("cannot open pcm_in driver: %s", pcm_get_error(in->pcm));
         pcm_close(in->pcm);
         adev->active_input = NULL;
         return -ENOMEM;
@@ -2039,7 +2039,7 @@
         buffer->time_stamp.tv_sec  = 0;
         buffer->time_stamp.tv_nsec = 0;
         buffer->delay_ns           = 0;
-        LOGW("read get_capture_delay(): pcm_htimestamp error");
+        ALOGW("read get_capture_delay(): pcm_htimestamp error");
         return;
     }
 
@@ -2060,7 +2060,7 @@
 
     buffer->time_stamp = tstamp;
     buffer->delay_ns   = delay_ns;
-    LOGV("get_capture_delay time_stamp = [%ld].[%ld], delay_ns: [%d],"
+    ALOGV("get_capture_delay time_stamp = [%ld].[%ld], delay_ns: [%d],"
          " kernel_delay:[%ld], buf_delay:[%ld], rsmp_delay:[%ld], kernel_frames:[%d], "
          "in->frames_in:[%d], in->proc_frames_in:[%d], frames:[%d]",
          buffer->time_stamp.tv_sec , buffer->time_stamp.tv_nsec, buffer->delay_ns,
@@ -2076,7 +2076,7 @@
 
     LOGFUNC("%s(%p, %ul)", __FUNCTION__, in, frames);
 
-    LOGV("update_echo_reference, frames = [%d], in->ref_frames_in = [%d],  "
+    ALOGV("update_echo_reference, frames = [%d], in->ref_frames_in = [%d],  "
           "b.frame_count = [%d]",
          frames, in->ref_frames_in, frames - in->ref_frames_in);
     if (in->ref_frames_in < frames) {
@@ -2095,12 +2095,12 @@
         if (in->echo_reference->read(in->echo_reference, &b) == 0)
         {
             in->ref_frames_in += b.frame_count;
-            LOGV("update_echo_reference: in->ref_frames_in:[%d], "
+            ALOGV("update_echo_reference: in->ref_frames_in:[%d], "
                     "in->ref_buf_size:[%d], frames:[%d], b.frame_count:[%d]",
                  in->ref_frames_in, in->ref_buf_size, frames, b.frame_count);
         }
     } else
-        LOGW("update_echo_reference: NOT enough frames to read ref buffer");
+        ALOGW("update_echo_reference: NOT enough frames to read ref buffer");
     return b.delay_ns;
 }
 
@@ -2208,7 +2208,7 @@
                                    (void*)in->buffer,
                                    in->config.period_size * hw_frame_size);
         if (in->read_status != 0) {
-            LOGE("get_next_buffer() pcm_read error %d", in->read_status);
+            ALOGE("get_next_buffer() pcm_read error %d", in->read_status);
             buffer->raw = NULL;
             buffer->frame_count = 0;
             return in->read_status;
@@ -2311,7 +2311,7 @@
                 in->proc_buf = (int16_t *)realloc(in->proc_buf,
                                          in->proc_buf_size *
                                              in->config.channels * sizeof(int16_t));
-                LOGV("process_frames(): in->proc_buf %p size extended to %d frames",
+                ALOGV("process_frames(): in->proc_buf %p size extended to %d frames",
                      in->proc_buf, in->proc_buf_size);
             }
             frames_rd = read_frames(in,
@@ -2911,7 +2911,7 @@
     adev->mixer = mixer_open(0);
     if (!adev->mixer) {
         free(adev);
-        LOGE("Unable to open the mixer, aborting.");
+        ALOGE("Unable to open the mixer, aborting.");
         return -EINVAL;
     }
 
@@ -2963,7 +2963,7 @@
         !adev->mixer_ctls.dl1_eq || !adev->mixer_ctls.voice_ul_volume) {
         mixer_close(adev->mixer);
         free(adev);
-        LOGE("Unable to locate all mixer controls, aborting.");
+        ALOGE("Unable to locate all mixer controls, aborting.");
         return -EINVAL;
     }
 
@@ -2987,7 +2987,7 @@
         pthread_mutex_unlock(&adev->lock);
         mixer_close(adev->mixer);
         free(adev);
-        LOGE("Unsupported boardtype, aborting.");
+        ALOGE("Unsupported boardtype, aborting.");
         return -EINVAL;
     }