Skip to content

Commit 9d9ce81

Browse files
Fix some remainders of MEI
1 parent b0d8bb0 commit 9d9ce81

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/manufacturer-specific-app/nrfconnect/manufacturer-specific/clusters/sample-external-manufacturer-specific-server.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ using namespace chip::app::Clusters::SampleExternalManufacturerSpecific::Attribu
2828

2929
void MatterSampleExternalManufacturerSpecificPluginServerInitCallback()
3030
{
31-
ChipLogProgress(Zcl, "Sample MEI Init. Ep %d, Total Ep %u", MATTER_DM_SAMPLE_EXTERNAL_MEI_CLUSTER_SERVER_ENDPOINT_COUNT,
31+
ChipLogProgress(Zcl, "Sample Manufacturer Specific Init. Ep %d, Total Ep %u", MATTER_DM_SAMPLE_MANUFACTURER_SPECIFIC_CLUSTER_SERVER_ENDPOINT_COUNT,
3232
static_cast<uint16_t>(kNumSupportedEndpoints));
3333
ReturnOnFailure(
3434
CommandHandlerInterfaceRegistry::Instance().RegisterCommandHandler(&SampleExternalManufacturerSpecificServer::Instance()));
@@ -38,15 +38,15 @@ void MatterSampleExternalManufacturerSpecificPluginServerInitCallback()
3838

3939
void emberAfSampleExternalManufacturerSpecificClusterServerInitCallback(chip::EndpointId endpoint)
4040
{
41-
ChipLogProgress(Zcl, "Creating Sample MEI cluster, Ep %d", endpoint);
41+
ChipLogProgress(Zcl, "Creating Sample Manufacturer Specific cluster, Ep %d", endpoint);
4242
SampleExternalManufacturerSpecificServer::Instance().RegisterEndpoint(endpoint);
4343
}
4444

4545
void MatterSampleExternalManufacturerSpecificClusterServerShutdownCallback(chip::EndpointId endpoint)
4646
{
4747
// There's currently no whole-cluster shutdown callback. That would trigger
4848
// call to `Shutdown`. Thus ep-based shutdown calls `UnregisterEndpoint`
49-
ChipLogProgress(Zcl, "Shutting down Sample MEI cluster, Ep %d", endpoint);
49+
ChipLogProgress(Zcl, "Shutting down Sample Manufacturer Specific cluster, Ep %d", endpoint);
5050
SampleExternalManufacturerSpecificServer::Instance().UnregisterEndpoint(endpoint);
5151
}
5252

src/app/clusters/manufacturer-specific-server/manufacturer-specific-server.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ using namespace chip::app::Clusters::SampleManufacturerSpecific::Attributes;
2828

2929
void MatterSampleManufacturerSpecificPluginServerInitCallback()
3030
{
31-
ChipLogProgress(Zcl, "Sample MEI Init. Ep %d, Total Ep %u",
31+
ChipLogProgress(Zcl, "Sample Manufacturer Specific Init. Ep %d, Total Ep %u",
3232
MATTER_DM_SAMPLE_MANUFACTURER_SPECIFIC_CLUSTER_SERVER_ENDPOINT_COUNT,
3333
static_cast<uint16_t>(kNumSupportedEndpoints));
3434
ReturnOnFailure(
@@ -39,15 +39,15 @@ void MatterSampleManufacturerSpecificPluginServerInitCallback()
3939

4040
void emberAfSampleManufacturerSpecificClusterServerInitCallback(chip::EndpointId endpoint)
4141
{
42-
ChipLogProgress(Zcl, "Creating Sample MEI cluster, Ep %d", endpoint);
42+
ChipLogProgress(Zcl, "Creating Sample Manufacturer Specific cluster, Ep %d", endpoint);
4343
SampleManufacturerSpecificServer::Instance().RegisterEndpoint(endpoint);
4444
}
4545

4646
void MatterSampleManufacturerSpecificClusterServerShutdownCallback(chip::EndpointId endpoint)
4747
{
4848
// There's currently no whole-cluster shutdown callback. That would trigger
4949
// call to `Shutdown`. Thus ep-based shutdown calls `UnregisterEndpoint`
50-
ChipLogProgress(Zcl, "Shutting down Sample MEI cluster, Ep %d", endpoint);
50+
ChipLogProgress(Zcl, "Shutting down Sample Manufacturer Specific cluster, Ep %d", endpoint);
5151
SampleManufacturerSpecificServer::Instance().UnregisterEndpoint(endpoint);
5252
}
5353

0 commit comments

Comments
 (0)