diff options
| author | Treehugger Robot <treehugger-gerrit@google.com> | 2021-04-16 02:35:38 +0000 |
|---|---|---|
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2021-04-16 02:35:38 +0000 |
| commit | 36fb168817920157c549dbd1ffddac2ef8a56656 (patch) | |
| tree | 20e96a428af4687117daee241bf1e15a9022f923 /core/java/android | |
| parent | cec2c552d1bbd8d7f870a9e8316dee35285377cc (diff) | |
| parent | 40fa3f58b2d4c6a695ef1ec76a65c0437360fd9e (diff) | |
Merge "[Telephoy] Add phone Id to support DSDS" am: 40fa3f58b2
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1676437
Change-Id: I3af03da8a500872635396324731c9816df399165
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/telephony/TelephonyRegistryManager.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/java/android/telephony/TelephonyRegistryManager.java b/core/java/android/telephony/TelephonyRegistryManager.java index b111ec339ed7..161d10a9090c 100644 --- a/core/java/android/telephony/TelephonyRegistryManager.java +++ b/core/java/android/telephony/TelephonyRegistryManager.java @@ -796,13 +796,14 @@ public class TelephonyRegistryManager { /** * Notify {@link PhysicalChannelConfig} has changed for a specific subscription. * + * @param slotIndex for which physical channel configs changed. * @param subId the subId * @param configs a list of {@link PhysicalChannelConfig}, the configs of physical channel. */ - public void notifyPhysicalChannelConfigForSubscriber( - int subId, List<PhysicalChannelConfig> configs) { + public void notifyPhysicalChannelConfigForSubscriber(int slotIndex, int subId, + List<PhysicalChannelConfig> configs) { try { - sRegistry.notifyPhysicalChannelConfigForSubscriber(subId, configs); + sRegistry.notifyPhysicalChannelConfigForSubscriber(slotIndex, subId, configs); } catch (RemoteException ex) { // system server crash } |
