diff options
author | Matthew Xie <mattx@google.com> | 2012-04-07 04:41:39 -0700 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-07-14 11:19:23 -0700 |
commit | 595bced8e7c280e37a75b9bf9c1f36263434041c (patch) | |
tree | b5edc7d472aa7ce62cf8204646c9c569da547945 /audio_a2dp_hw | |
parent | 2c79674ef766378464559c8645c74db5687280a9 (diff) | |
download | external_bluetooth_bluedroid-595bced8e7c280e37a75b9bf9c1f36263434041c.zip external_bluetooth_bluedroid-595bced8e7c280e37a75b9bf9c1f36263434041c.tar.gz external_bluetooth_bluedroid-595bced8e7c280e37a75b9bf9c1f36263434041c.tar.bz2 |
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
Diffstat (limited to 'audio_a2dp_hw')
-rwxr-xr-x | audio_a2dp_hw/audio_a2dp_hw.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |