aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-03-15 11:21:15 -0700
committerElliott Hughes <enh@google.com>2013-03-15 11:21:15 -0700
commit2eb44c5aa49f69b6ff0d3f9665d7728757b9ca93 (patch)
tree8d10d7ccfc20e0a212c60b7628bb4ae709447d37
parent4d696eb49d24590a6d6d25657b5bc0103e2d90ba (diff)
downloadandroid_bionic-2eb44c5aa49f69b6ff0d3f9665d7728757b9ca93.tar.gz
android_bionic-2eb44c5aa49f69b6ff0d3f9665d7728757b9ca93.tar.bz2
android_bionic-2eb44c5aa49f69b6ff0d3f9665d7728757b9ca93.zip
Remove useless workaround for HTC RIL bugs.
HTC's RIL uses the liblog logging, not ours. Change-Id: I56f9304e833ccb329df4ee55042012d7ad5f73ed
-rw-r--r--libc/bionic/logd_write.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/bionic/logd_write.c b/libc/bionic/logd_write.c
index 11c0e68b6..03ac6063d 100644
--- a/libc/bionic/logd_write.c
+++ b/libc/bionic/logd_write.c
@@ -151,9 +151,6 @@ int __libc_android_log_write(int prio, const char *tag, const char *msg)
if (tag == NULL)
tag = "";
- if (!strcmp(tag, "HTC_RIL"))
- log_id = LOG_ID_RADIO;
-
vec[0].iov_base = (unsigned char *) &prio;
vec[0].iov_len = 1;
vec[1].iov_base = (void *) tag;