aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/android/internal
diff options
context:
space:
mode:
authorSatish Singh <ssing@codeaurora.org>2014-05-06 14:39:57 -0700
committerEthan Chen <intervigil@gmail.com>2014-10-15 14:12:36 -0700
commitc8e12dc3221bad4213c33ee46d1bd5eb18fd2fe8 (patch)
tree0c4d5d70fa789e64059862f528b833fad0331832 /src/java/com/android/internal
parent87e03ee7104a94c97ead97c6c0bd45fa095d08a8 (diff)
downloadandroid_frameworks_opt_telephony-c8e12dc3221bad4213c33ee46d1bd5eb18fd2fe8.tar.gz
android_frameworks_opt_telephony-c8e12dc3221bad4213c33ee46d1bd5eb18fd2fe8.tar.bz2
android_frameworks_opt_telephony-c8e12dc3221bad4213c33ee46d1bd5eb18fd2fe8.zip
Correct order of parameter in iccExchangeApdu()
The class must be in 1st place for RIL_REQUEST_SIM_TRANSMIT_BASIC or RIL_REQUEST_SIM_TRANSMIT_CHANNEL requests to map hardware/RIL component. Change-Id: Idcf6faee0f6259704ea07b62ce713ebdd4c5da1b
Diffstat (limited to 'src/java/com/android/internal')
-rw-r--r--src/java/com/android/internal/telephony/RIL.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/com/android/internal/telephony/RIL.java b/src/java/com/android/internal/telephony/RIL.java
index d9b12b480..ca8e0b933 100644
--- a/src/java/com/android/internal/telephony/RIL.java
+++ b/src/java/com/android/internal/telephony/RIL.java
@@ -4629,6 +4629,7 @@ public class RIL extends BaseCommands implements CommandsInterface {
rr = RILRequest.obtain(RIL_REQUEST_SIM_TRANSMIT_CHANNEL, result);
}
+ rr.mParcel.writeInt(cla);
rr.mParcel.writeInt(command);
rr.mParcel.writeInt(channel);
rr.mParcel.writeString(null);
@@ -4637,7 +4638,7 @@ public class RIL extends BaseCommands implements CommandsInterface {
rr.mParcel.writeInt(p3);
rr.mParcel.writeString(data);
rr.mParcel.writeString(null);
- rr.mParcel.writeInt(cla);
+ rr.mParcel.writeString(null);
if (RILJ_LOGD) riljLog(rr.serialString() + "> iccExchangeAPDU: "
+ requestToString(rr.mRequest)