Remove useless workaround for HTC RIL bugs.

HTC's RIL uses the liblog logging, not ours.

Change-Id: I56f9304e833ccb329df4ee55042012d7ad5f73ed
This commit is contained in:
Elliott Hughes 2013-03-15 11:21:15 -07:00
parent 4d696eb49d
commit 2eb44c5aa4

View File

@ -151,9 +151,6 @@ int __libc_android_log_write(int prio, const char *tag, const char *msg)
if (tag == NULL) if (tag == NULL)
tag = ""; tag = "";
if (!strcmp(tag, "HTC_RIL"))
log_id = LOG_ID_RADIO;
vec[0].iov_base = (unsigned char *) &prio; vec[0].iov_base = (unsigned char *) &prio;
vec[0].iov_len = 1; vec[0].iov_len = 1;
vec[1].iov_base = (void *) tag; vec[1].iov_base = (void *) tag;