klte: Update RIL for lollipop

Change-Id: I9729a33de7e8f551271ab12adf6789375a0a5128
This commit is contained in:
Matt Filetto 2014-11-15 23:57:23 -08:00 committed by Ethan Chen
parent 3618008ef7
commit 90b6c65e97

View file

@ -39,7 +39,13 @@ public class KlteRIL extends RIL {
private static final int RIL_REQUEST_DIAL_EMERGENCY = 10016; private static final int RIL_REQUEST_DIAL_EMERGENCY = 10016;
public KlteRIL(Context context, int networkMode, int cdmaSubscription) { public KlteRIL(Context context, int networkMode, int cdmaSubscription) {
super(context, networkMode, cdmaSubscription); super(context, networkMode, cdmaSubscription, null);
mQANElements = 6;
}
public KlteRIL(Context context, int preferredNetworkType,
int cdmaSubscription, Integer instanceId) {
super(context, preferredNetworkType, cdmaSubscription, instanceId);
mQANElements = 6; mQANElements = 6;
} }