Skip to content

Commit

Permalink
m7-common: ril: Update RIL wakelock symantics
Browse files Browse the repository at this point in the history
Squash the needed 7.0 RIL updates from framework/opt/telephony:

060a6f0ba56dde532a9b9b28d4302df86a556691 Improve wakelock symantics
a05275d90833d2ff26a2571e2cc0f2ea91fd2b43 Additions to ril wakelock symantics.

Change-Id: Icd5ee1be7756d95952d39b150648a38ee5019b92
  • Loading branch information
Sanket Padawe authored and Flyhalf205 committed Nov 17, 2016
1 parent 0415824 commit 0a4cd46
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

import com.android.internal.telephony.uicc.IccCardApplicationStatus;
import com.android.internal.telephony.uicc.IccCardStatus;
import com.android.internal.telephony.uicc.IccUtils;
import com.android.internal.telephony.dataconnection.DcFailCause;
import com.android.internal.telephony.dataconnection.DataCallResponse;

Expand Down Expand Up @@ -95,7 +96,7 @@ public HTCQualcommRIL(Context context, int networkMode, int cdmaSubscription,

@Override
protected void
processUnsolicited (Parcel p) {
processUnsolicited (Parcel p, int type) {
Object ret;
int dataPosition = p.dataPosition(); // save off position within the Parcel
int response = p.readInt();
Expand All @@ -117,7 +118,7 @@ public HTCQualcommRIL(Context context, int networkMode, int cdmaSubscription,
p.setDataPosition(dataPosition);

// Forward responses that we are not overriding to the super class
super.processUnsolicited(p);
super.processUnsolicited(p, type);
return;
}

Expand Down

0 comments on commit 0a4cd46

Please sign in to comment.