Skip to content

Commit cd8ca45

Browse files
restyled-commitserwinpan1
authored andcommitted
Restyled by clang-format
1 parent 4c37639 commit cd8ca45

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

examples/chef/common/clusters/refrigerator-and-temperature-controlled-cabinet-mode/tcc-mode.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,7 @@ void emberAfRefrigeratorAndTemperatureControlledCabinetModeClusterInitCallback(c
149149
VerifyOrDie(endpointId == 1); // this cluster is only enabled for endpoint 1.
150150
VerifyOrDie(gTccModeDelegate == nullptr && gTccModeInstance == nullptr);
151151
gTccModeDelegate = new RefrigeratorAndTemperatureControlledCabinetMode::TccModeDelegate;
152-
gTccModeInstance = new ModeBase::Instance(gTccModeDelegate, 0x1, RefrigeratorAndTemperatureControlledCabinetMode::Id,
153-
0);
152+
gTccModeInstance = new ModeBase::Instance(gTccModeDelegate, 0x1, RefrigeratorAndTemperatureControlledCabinetMode::Id, 0);
154153
gTccModeInstance->Init();
155154
}
156155

examples/chef/common/stubs.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <app-common/zap-generated/attributes/Accessors.h>
22
#include <app-common/zap-generated/callback.h>
33
#include <app/data-model/Nullable.h>
4-
#include <app/util/config.h>
54
#include <app/util/attribute-storage.h>
5+
#include <app/util/config.h>
66
#include <lib/core/DataModelTypes.h>
77

88
using chip::app::DataModel::Nullable;
@@ -319,8 +319,8 @@ void ApplicationInit()
319319
ChipLogProgress(NotSpecified, "Chef Application Init !!!")
320320

321321
#ifdef MATTER_DM_PLUGIN_REFRIGERATOR_AND_TEMPERATURE_CONTROLLED_CABINET_MODE_SERVER
322-
// set Parent Endpoint and Composition Type for an Endpoint
323-
EndpointId kRefEndpointId = 1;
322+
// set Parent Endpoint and Composition Type for an Endpoint
323+
EndpointId kRefEndpointId = 1;
324324
EndpointId kColdCabinetEndpointId = 2;
325325
EndpointId kFreezeCabinetEndpointId = 3;
326326
SetTreeCompositionForEndpoint(kRefEndpointId);

0 commit comments

Comments
 (0)