From 595bced8e7c280e37a75b9bf9c1f36263434041c Mon Sep 17 00:00:00 2001 From: Matthew Xie Date: Sat, 7 Apr 2012 04:41:39 -0700 Subject: replace logx with alogx Conflicts: btif/src/btif_core.c btif/src/btif_dm.c btif/src/btif_hh.c btif/src/btif_sock.c gki/ulinux/gki_ulinux.c hci/include/bt_hci_bdroid.h hci/src/bt_hci_bdroid.c hci/src/btsnoop.c hci/src/hci_h4.c hci/src/userial.c vendor/libvendor/src/hardware.c vendor/libvendor/src/upio.c --- audio_a2dp_hw/audio_a2dp_hw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'audio_a2dp_hw') diff --git a/audio_a2dp_hw/audio_a2dp_hw.c b/audio_a2dp_hw/audio_a2dp_hw.c index f253663..fcbf0ae 100755 --- a/audio_a2dp_hw/audio_a2dp_hw.c +++ b/audio_a2dp_hw/audio_a2dp_hw.c @@ -86,8 +86,8 @@ #define CASE_RETURN_STR(const) case const: return #const; -#define FNLOG() LOGV("%s", __FUNCTION__); -#define DEBUG(fmt, ...) LOGD ("%s: " fmt,__FUNCTION__, ## __VA_ARGS__) +#define FNLOG() ALOGV("%s", __FUNCTION__); +#define DEBUG(fmt, ...) ALOGD ("%s: " fmt,__FUNCTION__, ## __VA_ARGS__) #define ASSERTC(cond, msg, val) if (!(cond)) {LOGE("### ASSERT : %s line %d %s (%d) ###", __FILE__, __LINE__, msg, val);} @@ -528,7 +528,7 @@ static int out_set_sample_rate(struct audio_stream *stream, uint32_t rate) if (rate != AUDIO_STREAM_DEFAULT_RATE) { - LOGE("only rate %d supported", AUDIO_STREAM_DEFAULT_RATE); + ALOGE("only rate %d supported", AUDIO_STREAM_DEFAULT_RATE); return -1; } -- cgit v1.1