Skip to content

Commit

Permalink
Address post merge comment (#35103)
Browse files Browse the repository at this point in the history
* Address post merge comment

* Quick fix
  • Loading branch information
tehampson authored Aug 20, 2024
1 parent bb26a58 commit c84593f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ using namespace chip::app::Clusters::AdministratorCommissioning;

CHIP_ERROR BridgedAdministratorCommissioning::Init()
{
// We expect initialization after all embr plugin clusters initialization. This allows us to unregister
// the existing AccessAttributeInterface for AdministratorCommissioning and register ourselves, ensuring
// we get the callback for reading attribute. If the read is not intended for a bridged device we will
// We expect initialization after emberAfInit(). This allows us to unregister the existing
// AccessAttributeInterface for AdministratorCommissioning and register ourselves, ensuring we
// get the callback for reading attribute. If the read is not intended for a bridged device we will
// forward it to the original attribute interface that we are unregistering.
mOriginalAttributeInterface = AttributeAccessInterfaceRegistry::Instance().Get(kRootEndpointId, AdministratorCommissioning::Id);
VerifyOrReturnError(mOriginalAttributeInterface, CHIP_ERROR_INTERNAL);
Expand Down

0 comments on commit c84593f

Please sign in to comment.