diff --git a/src/app/clusters/thermostat-server/thermostat-server.cpp b/src/app/clusters/thermostat-server/thermostat-server.cpp index 93af39daa06ddf..9e6e0f074d5e52 100644 --- a/src/app/clusters/thermostat-server/thermostat-server.cpp +++ b/src/app/clusters/thermostat-server/thermostat-server.cpp @@ -468,7 +468,7 @@ void ThermostatAttrAccess::OnFabricRemoved(const FabricTable & fabricTable, Fabr } } -void MatterThermostatClusterServerAttributeChangedCallback(const chip::app::ConcreteAttributePath & attributePath) +void MatterThermostatClusterServerAttributeChangedCallback(const ConcreteAttributePath & attributePath) { uint32_t flags; if (FeatureMap::Get(attributePath.mEndpointId, &flags) != Status::Success) @@ -477,7 +477,7 @@ void MatterThermostatClusterServerAttributeChangedCallback(const chip::app::Conc return; } - auto featureMap = chip::BitMask(flags); + auto featureMap = BitMask(flags); if (!featureMap.Has(Feature::kPresets)) { // This server does not support presets, so nothing to do @@ -487,7 +487,7 @@ void MatterThermostatClusterServerAttributeChangedCallback(const chip::app::Conc bool occupied = true; if (featureMap.Has(Feature::kOccupancy)) { - chip::BitMask occupancy; + BitMask occupancy; if (Occupancy::Get(attributePath.mEndpointId, &occupancy) == Status::Success) { occupied = occupancy.Has(OccupancyBitmap::kOccupied); @@ -808,7 +808,7 @@ MatterThermostatClusterServerPreAttributeChangedCallback(const app::ConcreteAttr } } -void MatterThermostatClusterServerAttributeChangedCallback(const chip::app::ConcreteAttributePath & attributePath) +void MatterThermostatClusterServerAttributeChangedCallback(const ConcreteAttributePath & attributePath) { Thermostat::MatterThermostatClusterServerAttributeChangedCallback(attributePath); }