Skip to content

Commit c277cd6

Browse files
committed
Update endpoint reference count name
1 parent 4d66196 commit c277cd6

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

examples/tv-app/android/include/account-login/AccountLoginManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ void AccountLoginManager::GetSetupPin(char * setupPin, size_t setupPinSize, cons
106106

107107
uint16_t AccountLoginManager::GetClusterRevision(chip::EndpointId endpoint)
108108
{
109-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
109+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
110110
{
111111
return kClusterRevision;
112112
}

examples/tv-app/android/include/content-launcher/AppContentLauncherManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ uint32_t AppContentLauncherManager::GetFeatureMap(chip::EndpointId endpoint)
168168

169169
uint16_t AppContentLauncherManager::GetClusterRevision(chip::EndpointId endpoint)
170170
{
171-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
171+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
172172
{
173173
return kClusterRevision;
174174
}

examples/tv-app/android/include/media-playback/AppMediaPlaybackManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ uint32_t AppMediaPlaybackManager::GetFeatureMap(chip::EndpointId endpoint)
286286

287287
uint16_t AppMediaPlaybackManager::GetClusterRevision(chip::EndpointId endpoint)
288288
{
289-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
289+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
290290
{
291291
return kClusterRevision;
292292
}

examples/tv-app/android/include/target-navigator/TargetNavigatorManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void TargetNavigatorManager::HandleNavigateTarget(CommandResponseHelper<Navigate
148148

149149
uint16_t TargetNavigatorManager::GetClusterRevision(chip::EndpointId endpoint)
150150
{
151-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
151+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
152152
{
153153
return kClusterRevision;
154154
}

examples/tv-app/android/java/ChannelManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ uint32_t ChannelManager::GetFeatureMap(chip::EndpointId endpoint)
754754

755755
uint16_t ChannelManager::GetClusterRevision(chip::EndpointId endpoint)
756756
{
757-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
757+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
758758
{
759759
return kClusterRevision;
760760
}

examples/tv-app/android/java/ContentLauncherManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ uint32_t ContentLauncherManager::GetFeatureMap(chip::EndpointId endpoint)
289289

290290
uint16_t ContentLauncherManager::GetClusterRevision(chip::EndpointId endpoint)
291291
{
292-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
292+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
293293
{
294294
return kClusterRevision;
295295
}

examples/tv-app/android/java/MediaPlaybackManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ uint32_t MediaPlaybackManager::GetFeatureMap(chip::EndpointId endpoint)
605605

606606
uint16_t MediaPlaybackManager::GetClusterRevision(chip::EndpointId endpoint)
607607
{
608-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
608+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
609609
{
610610
return kClusterRevision;
611611
}

examples/tv-app/tv-common/clusters/account-login/AccountLoginManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void AccountLoginManager::HandleGetSetupPin(CommandResponseHelper<GetSetupPINRes
6868

6969
uint16_t AccountLoginManager::GetClusterRevision(chip::EndpointId endpoint)
7070
{
71-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
71+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
7272
{
7373
return kClusterRevision;
7474
}

examples/tv-app/tv-common/clusters/channel/ChannelManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ uint32_t ChannelManager::GetFeatureMap(chip::EndpointId endpoint)
341341

342342
uint16_t ChannelManager::GetClusterRevision(chip::EndpointId endpoint)
343343
{
344-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
344+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
345345
{
346346
return kClusterRevision;
347347
}

examples/tv-app/tv-common/clusters/content-launcher/ContentLauncherManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ uint32_t ContentLauncherManager::GetFeatureMap(chip::EndpointId endpoint)
208208

209209
uint16_t ContentLauncherManager::GetClusterRevision(chip::EndpointId endpoint)
210210
{
211-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
211+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
212212
{
213213
return kClusterRevision;
214214
}

examples/tv-app/tv-common/clusters/media-playback/MediaPlaybackManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ uint32_t MediaPlaybackManager::GetFeatureMap(chip::EndpointId endpoint)
329329

330330
uint16_t MediaPlaybackManager::GetClusterRevision(chip::EndpointId endpoint)
331331
{
332-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
332+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
333333
{
334334
return kClusterRevision;
335335
}

examples/tv-app/tv-common/clusters/target-navigator/TargetNavigatorManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ void TargetNavigatorManager::HandleNavigateTarget(CommandResponseHelper<Navigate
7070

7171
uint16_t TargetNavigatorManager::GetClusterRevision(chip::EndpointId endpoint)
7272
{
73-
if (endpoint >= EMBER_AF_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
73+
if (endpoint >= MATTER_DM_CONTENT_LAUNCHER_CLUSTER_SERVER_ENDPOINT_COUNT)
7474
{
7575
return kClusterRevision;
7676
}

0 commit comments

Comments
 (0)