summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2021-04-15 19:55:10 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2021-04-15 19:55:10 +0000
commit6728857aafe9af6261516088d95cfec18f3249cc (patch)
tree4b6a5ceb0ed92a09dae138b70cab49adc6ac1e73 /core/java/android
parent1430546720742776de5dfcedf5267986aa07c1f6 (diff)
parent1835f13c4eac260be66c0b0766ec314671e82f12 (diff)
Merge "[Telephoy] Add phone Id to support DSDS" into sc-dev
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/telephony/TelephonyRegistryManager.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/java/android/telephony/TelephonyRegistryManager.java b/core/java/android/telephony/TelephonyRegistryManager.java
index 340fa406bbb7..4b18c5aae614 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
}