summaryrefslogtreecommitdiffstats
path: root/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java
diff options
context:
space:
mode:
Diffstat (limited to 'ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java')
-rw-r--r--ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java15
1 files changed, 7 insertions, 8 deletions
diff --git a/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java b/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java
index 89561b6..f233f15 100644
--- a/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java
+++ b/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java
@@ -67,18 +67,17 @@ public class smdk4x12QComRIL extends RIL implements CommandsInterface {
public static final long SEND_SMS_TIMEOUT_IN_MS = 30000;
private boolean samsungEmergency = needsOldRilFeature("samsungEMSReq");
- public smdk4x12QComRIL(Context context, int preferredNetworkType,
- int cdmaSubscription, Integer instanceId) {
- super(context, preferredNetworkType, cdmaSubscription, instanceId);
+ public smdk4x12QComRIL(Context context, int networkModes, int cdmaSubscription) {
+ this(context, networkModes, cdmaSubscription, null);
mAudioManager = (AudioManager)mContext.getSystemService(Context.AUDIO_SERVICE);
- mQANElements = SystemProperties.getInt("ro.ril.telephony.mqanelements", 4);
+ mQANElements = SystemProperties.getInt("ro.ril.telephony.mqanelements", 6);
}
- public smdk4x12QComRIL(Context context, int networkMode,
- int cdmaSubscription) {
- super(context, networkMode, cdmaSubscription, null);
+ public smdk4x12QComRIL(Context context, int preferredNetworkType,
+ int cdmaSubscription, Integer instanceId) {
+ super(context, preferredNetworkType, cdmaSubscription, instanceId);
mAudioManager = (AudioManager)mContext.getSystemService(Context.AUDIO_SERVICE);
- mQANElements = SystemProperties.getInt("ro.ril.telephony.mqanelements", 4);
+ mQANElements = SystemProperties.getInt("ro.ril.telephony.mqanelements", 6);
}
@Override