aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCCD-1997 <dcunha.cyprien@gmail.com>2016-02-03 22:58:49 +0530
committerAndreas Blaesius <skate4life@gmx.de>2016-02-21 11:11:18 -0800
commit00f5286ec0546c2f29f053e7f62c567fdde84acf (patch)
tree37de82f5cb0552660c18934c23d6102e7b8f4b11
parentdb26d2b41643c567fca5983e61714ce1ddbaeae0 (diff)
downloaddevice_samsung_espressowifi-00f5286ec0546c2f29f053e7f62c567fdde84acf.zip
device_samsung_espressowifi-00f5286ec0546c2f29f053e7f62c567fdde84acf.tar.gz
device_samsung_espressowifi-00f5286ec0546c2f29f053e7f62c567fdde84acf.tar.bz2
SamsungOmap4RIL: Update constructors
Change-Id: I24c3b9cf659cb55297b0a208e3d7c9942c4135ee Signed-off-by: CCD-1997 <dcunha.cyprien@gmail.com>
-rw-r--r--ril/telephony/java/com/android/internal/telephony/SamsungOmap4RIL.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/ril/telephony/java/com/android/internal/telephony/SamsungOmap4RIL.java b/ril/telephony/java/com/android/internal/telephony/SamsungOmap4RIL.java
index 2639479..41b44d8 100644
--- a/ril/telephony/java/com/android/internal/telephony/SamsungOmap4RIL.java
+++ b/ril/telephony/java/com/android/internal/telephony/SamsungOmap4RIL.java
@@ -121,11 +121,15 @@ public class SamsungOmap4RIL extends RIL implements CommandsInterface {
private Object mCatProCmdBuffer;
- public SamsungOmap4RIL(Context context, int networkMode, int cdmaSubscription, Integer instanceid) {
- super(context, networkMode, cdmaSubscription);
+ public SamsungOmap4RIL(Context context, int preferredNetworkType, int cdmaSubscription, Integer instanceid) {
+ super(context, preferredNetworkType, cdmaSubscription, instanceid);
mQANElements = 5;
}
+ public SamsungOmap4RIL(Context context, int preferredNetworkType, int cdmaSubscription) {
+ super(context, preferredNetworkType, cdmaSubscription, null);
+ }
+
static String
requestToString(int request) {
switch (request) {