diff options
author | Wink Saville <> | 2009-04-02 01:37:03 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-04-02 01:37:03 -0700 |
commit | 7bdfb165ad84986b82dce1a3fcfecf51f9f06528 (patch) | |
tree | 199ac04998b945aacf0f6d5b50b430779e850dc7 /liblog | |
parent | 01161168aa87ea9f1513d2b7b1232521c84e1ea4 (diff) | |
download | system_core-7bdfb165ad84986b82dce1a3fcfecf51f9f06528.zip system_core-7bdfb165ad84986b82dce1a3fcfecf51f9f06528.tar.gz system_core-7bdfb165ad84986b82dce1a3fcfecf51f9f06528.tar.bz2 |
AI 144185: Integrate cdma into the main code base.
Automated import of CL 144185
Diffstat (limited to 'liblog')
-rw-r--r-- | liblog/logd_write.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/liblog/logd_write.c b/liblog/logd_write.c index 80867d1..96da38b 100644 --- a/liblog/logd_write.c +++ b/liblog/logd_write.c @@ -143,12 +143,16 @@ int __android_log_write(int prio, const char *tag, const char *msg) /* XXX: This needs to go! */ if (!strcmp(tag, "HTC_RIL") || !strcmp(tag, "RILJ") || + !strcmp(tag, "RILB") || !strcmp(tag, "RILC") || !strcmp(tag, "RILD") || !strcmp(tag, "RIL") || !strcmp(tag, "AT") || !strcmp(tag, "GSM") || - !strcmp(tag, "STK")) + !strcmp(tag, "STK") || + !strcmp(tag, "CDMA") || + !strcmp(tag, "PHONE") || + !strcmp(tag, "SMS")) log_id = LOG_ID_RADIO; vec[0].iov_base = (unsigned char *) &prio; |