mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Bug 744306 - Part 2: enable RIL v6 on Akami. r=philikon
This commit is contained in:
parent
8826981151
commit
b3126449e7
@ -658,7 +658,14 @@ let RIL = {
|
||||
}
|
||||
RILQUIRKS_DATACALLSTATE_DOWN_IS_UP = true;
|
||||
}
|
||||
|
||||
let ril_impl = libcutils.property_get("gsm.version.ril-impl");
|
||||
if (ril_impl == "Qualcomm RIL 1.0") {
|
||||
if (DEBUG) {
|
||||
debug("Detected Qualcomm RIL 1.0, " +
|
||||
"disabling RILQUIRKS_V5_LEGACY to false");
|
||||
}
|
||||
RILQUIRKS_V5_LEGACY = false;
|
||||
}
|
||||
this.rilQuirksInitialized = true;
|
||||
},
|
||||
|
||||
@ -2472,6 +2479,7 @@ RIL[UNSOLICITED_RIL_CONNECTED] = function UNSOLICITED_RIL_CONNECTED(length) {
|
||||
// Prevent response id collision between UNSOLICITED_RIL_CONNECTED and
|
||||
// UNSOLICITED_VOICE_RADIO_TECH_CHANGED for Akami on gingerbread branch.
|
||||
if (!length) {
|
||||
this.initRILQuirks();
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user