Skip to content

Commit 9df818b

Browse files
Decouple PumpConfigurationAndControl from EmberCompat (project-chip#36045)
This uses the ember internal function instead of the ember compatibility functions override. It is somewhat unclear why we have an override that replaces one method with a single method that is identical except arguments. Co-authored-by: Andrei Litvin <andreilitvin@google.com>
1 parent 4318c3a commit 9df818b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/clusters/pump-configuration-and-control-server/pump-configuration-and-control-server.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ static void setEffectiveModes(EndpointId endpoint)
8181
// if this is not suitable, the application should override this value in
8282
// the post attribute change callback for the operation mode attribute
8383
const EmberAfAttributeMetadata * effectiveControlModeMetaData;
84-
effectiveControlModeMetaData = GetAttributeMetadata(
85-
app::ConcreteAttributePath(endpoint, PumpConfigurationAndControl::Id, Attributes::EffectiveControlMode::Id));
84+
effectiveControlModeMetaData =
85+
emberAfLocateAttributeMetadata(endpoint, PumpConfigurationAndControl::Id, Attributes::EffectiveControlMode::Id);
8686
controlMode = static_cast<ControlModeEnum>(effectiveControlModeMetaData->defaultValue.defaultValue);
8787
}
8888

0 commit comments

Comments
 (0)