Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0abf1a4c authored by Shareef Ali's avatar Shareef Ali
Browse files

SamsungQualcommRIL: fixup drivercall for universal builds

Change-Id: I92ba18b5406c73897444d1db378c23d8561cc147
parent 09bb3948
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -68,6 +68,7 @@ public class SamsungQualcommRIL extends RIL implements CommandsInterface {
    private boolean oldRilState = needsOldRilFeature("exynos4RadioState");
    private boolean googleEditionSS = needsOldRilFeature("googleEditionSS");
    private boolean driverCall = needsOldRilFeature("newDriverCall");
    private boolean driverCallU = needsOldRilFeature("newDriverCallU");
    private boolean dialCode = needsOldRilFeature("newDialCode");
    public SamsungQualcommRIL(Context context, int networkMode,
            int cdmaSubscription) {
@@ -268,7 +269,7 @@ public class SamsungQualcommRIL extends RIL implements CommandsInterface {
    @Override
    protected Object
    responseCallList(Parcel p) {
        samsungDriverCall = (driverCall && !isGSM) || mRilVersion < 7 ? false : true;
        samsungDriverCall = driverCallU || (driverCall && !isGSM) || mRilVersion < 7 ? false : true;
        return super.responseCallList(p);
    }