mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
Merge "xmm6262: Update to new RIL version" into cm-10.2
This commit is contained in:
commit
e2c157a687
5 changed files with 318 additions and 173 deletions
|
@ -10,6 +10,7 @@ LOCAL_SRC_FILES:= \
|
|||
ril_event.cpp
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
liblog \
|
||||
libutils \
|
||||
libbinder \
|
||||
libcutils \
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -123,6 +123,8 @@
|
|||
{RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU, dispatchStrings, responseVoid},
|
||||
{RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS, dispatchString, responseSIM_IO},
|
||||
{RIL_REQUEST_VOICE_RADIO_TECH, dispatchVoiceRadioTech, responseInts}, // 108
|
||||
{RIL_REQUEST_GET_CELL_INFO_LIST, dispatchVoid, responseCellInfoList},
|
||||
{RIL_REQUEST_SET_UNSOL_CELL_INFO_LIST_RATE, dispatchInts, responseVoid}, // 110
|
||||
{0, NULL, NULL}, // 10001
|
||||
{RIL_REQUEST_GET_CELL_BROADCAST_CONFIG, dispatchVoid, responseVoid},
|
||||
{0, NULL, NULL}, // 10003
|
||||
|
|
|
@ -75,7 +75,7 @@ static struct ril_event pending_list;
|
|||
#define DEBUG 0
|
||||
|
||||
#if DEBUG
|
||||
#define dlog(x...) ALOGD( x )
|
||||
#define dlog(x...) RLOGD( x )
|
||||
static void dump_event(struct ril_event * ev)
|
||||
{
|
||||
dlog("~~~~ Event %x ~~~~", (unsigned int)ev);
|
||||
|
@ -370,7 +370,7 @@ void ril_event_loop()
|
|||
if (n < 0) {
|
||||
if (errno == EINTR) continue;
|
||||
|
||||
ALOGE("ril_event: select error (%d)", errno);
|
||||
RLOGE("ril_event: select error (%d)", errno);
|
||||
// bail?
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -50,3 +50,4 @@
|
|||
{RIL_UNSOL_EXIT_EMERGENCY_CALLBACK_MODE, responseVoid, WAKE_PARTIAL},
|
||||
{RIL_UNSOL_RIL_CONNECTED, responseInts, WAKE_PARTIAL},
|
||||
{RIL_UNSOL_VOICE_RADIO_TECH_CHANGED, responseInts, WAKE_PARTIAL},
|
||||
{RIL_UNSOL_CELL_INFO_LIST, responseCellInfoList, WAKE_PARTIAL},
|
Loading…
Reference in a new issue