aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Pasanen <invisiblek@cyanogenmod.org>2016-01-07 07:45:01 -0600
committerDan Pasanen <invisiblek@cyanogenmod.org>2016-01-07 08:27:37 -0600
commitec0a6539a08dde43bbd92e1059d961aab9ab48e9 (patch)
treeb4da6dba093e35d3459f1551a5ffafaef75a1771
parent451e76b05420367fb130f582375869fc2d7508c9 (diff)
ril: rename to LS990RIL and inherit LgeLteRIL
Change-Id: I050cd8afb0d8f0e5d9ea5532dd01490e9fcb1c63
-rw-r--r--BoardConfig.mk2
-rw-r--r--ril/telephony/java/com/android/internal/telephony/LS990RIL.java (renamed from ril/telephony/java/com/android/internal/telephony/LgeLteRIL.java)10
-rw-r--r--system.prop2
3 files changed, 7 insertions, 7 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk
index 5172515..a9d7597 100644
--- a/BoardConfig.mk
+++ b/BoardConfig.mk
@@ -39,7 +39,7 @@ TARGET_USERIMAGES_USE_F2FS := true
TARGET_RECOVERY_FSTAB := device/lge/ls990/rootdir/etc/fstab.g3
# RIL
-BOARD_RIL_CLASS := ../../../device/lge/ls990/ril/
+BOARD_RIL_CLASS += ../../../device/lge/ls990/ril/
# NFC
BOARD_NFC_CHIPSET := pn544
diff --git a/ril/telephony/java/com/android/internal/telephony/LgeLteRIL.java b/ril/telephony/java/com/android/internal/telephony/LS990RIL.java
index 4b7e8f4..8df9442 100644
--- a/ril/telephony/java/com/android/internal/telephony/LgeLteRIL.java
+++ b/ril/telephony/java/com/android/internal/telephony/LS990RIL.java
@@ -31,19 +31,19 @@ import com.android.internal.telephony.uicc.IccCardApplicationStatus;
import com.android.internal.telephony.uicc.IccCardStatus;
/**
- * Custom Qualcomm RIL for G3
+ * Custom Qualcomm RIL for LS990
*
* {@hide}
*/
-public class LgeLteRIL extends RIL implements CommandsInterface {
- static final String LOG_TAG = "LgeLteRIL";
+public class LS990RIL extends LgeLteRIL implements CommandsInterface {
+ static final String LOG_TAG = "LS990RIL";
- public LgeLteRIL(Context context, int preferredNetworkType,
+ public LS990RIL(Context context, int preferredNetworkType,
int cdmaSubscription, Integer instanceId) {
this(context, preferredNetworkType, cdmaSubscription);
}
- public LgeLteRIL(Context context, int networkMode, int cdmaSubscription) {
+ public LS990RIL(Context context, int networkMode, int cdmaSubscription) {
super(context, networkMode, cdmaSubscription);
}
diff --git a/system.prop b/system.prop
index dc329a3..06270f5 100644
--- a/system.prop
+++ b/system.prop
@@ -8,7 +8,7 @@ ro.cdma.home.operator.alpha=Sprint
telephony.lteOnCdmaDevice=1
telephony.lte.cdma.device=1
ro.telephony.default_network=8
-ro.telephony.ril_class=LgeLteRIL
+ro.telephony.ril_class=LS990RIL
ro.ril.def.preferred.network=8
ril.subscription.types=NV,RUIM
persist.radio.no_wait_for_card=1