Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and markus-becker-tridonic-com committed Jan 13, 2025
1 parent 0abdfa5 commit ac840e4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ void MatterSampleExternalManufacturerSpecificPluginServerInitCallback()
{
ChipLogProgress(Zcl, "Sample MEI Init. Ep %d, Total Ep %u", MATTER_DM_SAMPLE_EXTERNAL_MEI_CLUSTER_SERVER_ENDPOINT_COUNT,
static_cast<uint16_t>(kNumSupportedEndpoints));
ReturnOnFailure(CommandHandlerInterfaceRegistry::Instance().RegisterCommandHandler(&SampleExternalManufacturerSpecificServer::Instance()));
ReturnOnFailure(
CommandHandlerInterfaceRegistry::Instance().RegisterCommandHandler(&SampleExternalManufacturerSpecificServer::Instance()));
VerifyOrReturn(AttributeAccessInterfaceRegistry::Instance().Register(&SampleExternalManufacturerSpecificServer::Instance()),
CHIP_ERROR_INCORRECT_STATE);
}
Expand All @@ -57,7 +58,9 @@ namespace app {
namespace Clusters {
namespace SampleExternalManufacturerSpecific {

SampleExternalManufacturerSpecificContent::SampleExternalManufacturerSpecificContent() : SampleExternalManufacturerSpecificContent(kInvalidEndpointId) {}
SampleExternalManufacturerSpecificContent::SampleExternalManufacturerSpecificContent() :
SampleExternalManufacturerSpecificContent(kInvalidEndpointId)
{}

SampleExternalManufacturerSpecificContent::SampleExternalManufacturerSpecificContent(EndpointId aEndpoint)
{
Expand Down Expand Up @@ -142,7 +145,8 @@ CHIP_ERROR SampleExternalManufacturerSpecificServer::Read(const ConcreteReadAttr
return err;
}

CHIP_ERROR SampleExternalManufacturerSpecificServer::Write(const ConcreteDataAttributePath & aPath, AttributeValueDecoder & aDecoder)
CHIP_ERROR SampleExternalManufacturerSpecificServer::Write(const ConcreteDataAttributePath & aPath,
AttributeValueDecoder & aDecoder)
{
CHIP_ERROR err = CHIP_NO_ERROR;
auto endpoint = aPath.mEndpointId;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ac840e4

Please sign in to comment.