diff --git a/examples/platform/linux/AppMain.cpp b/examples/platform/linux/AppMain.cpp index eb458825284aae..18e2b848c255cf 100644 --- a/examples/platform/linux/AppMain.cpp +++ b/examples/platform/linux/AppMain.cpp @@ -327,7 +327,6 @@ CHIP_ERROR InitCommissioner() factoryParams.fabricIndependentStorage = &gServerStorage; params.storageDelegate = &gServerStorage; - params.deviceAddressUpdateDelegate = nullptr; params.operationalCredentialsDelegate = &gOpCredsIssuer; ReturnErrorOnFailure(gOpCredsIssuer.Initialize(gServerStorage)); diff --git a/src/controller/CHIPDeviceController.cpp b/src/controller/CHIPDeviceController.cpp index f33d456dffbc71..94898569cbd87b 100644 --- a/src/controller/CHIPDeviceController.cpp +++ b/src/controller/CHIPDeviceController.cpp @@ -129,7 +129,6 @@ CHIP_ERROR DeviceController::Init(ControllerInitParams params) ReturnErrorOnFailure(mDNSResolver.Init(params.systemState->UDPEndPointManager())); mDNSResolver.SetOperationalDelegate(this); mDNSResolver.SetCommissioningDelegate(this); - RegisterDeviceAddressUpdateDelegate(params.deviceAddressUpdateDelegate); RegisterDeviceDiscoveryDelegate(params.deviceDiscoveryDelegate); VerifyOrReturnError(params.operationalCredentialsDelegate != nullptr, CHIP_ERROR_INVALID_ARGUMENT); diff --git a/src/controller/CHIPDeviceController.h b/src/controller/CHIPDeviceController.h index 167a186fecc63e..467cd8e66df117 100644 --- a/src/controller/CHIPDeviceController.h +++ b/src/controller/CHIPDeviceController.h @@ -91,7 +91,6 @@ struct ControllerInitParams { PersistentStorageDelegate * storageDelegate = nullptr; DeviceControllerSystemState * systemState = nullptr; - DeviceAddressUpdateDelegate * deviceAddressUpdateDelegate = nullptr; DeviceDiscoveryDelegate * deviceDiscoveryDelegate = nullptr; OperationalCredentialsDelegate * operationalCredentialsDelegate = nullptr; diff --git a/src/controller/CHIPDeviceControllerFactory.cpp b/src/controller/CHIPDeviceControllerFactory.cpp index 3f6683a4fa2945..2472f2c637ee71 100644 --- a/src/controller/CHIPDeviceControllerFactory.cpp +++ b/src/controller/CHIPDeviceControllerFactory.cpp @@ -203,7 +203,6 @@ CHIP_ERROR DeviceControllerFactory::InitSystemState(FactoryInitParams params) void DeviceControllerFactory::PopulateInitParams(ControllerInitParams & controllerParams, const SetupParams & params) { - controllerParams.deviceAddressUpdateDelegate = params.deviceAddressUpdateDelegate; controllerParams.operationalCredentialsDelegate = params.operationalCredentialsDelegate; controllerParams.operationalKeypair = params.operationalKeypair; controllerParams.controllerNOC = params.controllerNOC; diff --git a/src/controller/CHIPDeviceControllerFactory.h b/src/controller/CHIPDeviceControllerFactory.h index c33cf3af9fa4c0..096abc88ea6f8d 100644 --- a/src/controller/CHIPDeviceControllerFactory.h +++ b/src/controller/CHIPDeviceControllerFactory.h @@ -39,7 +39,6 @@ namespace Controller { struct SetupParams { - DeviceAddressUpdateDelegate * deviceAddressUpdateDelegate = nullptr; OperationalCredentialsDelegate * operationalCredentialsDelegate = nullptr; PersistentStorageDelegate * storageDelegate = nullptr; diff --git a/src/controller/python/OpCredsBinding.cpp b/src/controller/python/OpCredsBinding.cpp index 73b3c716cac3e2..5dbf928dd7e2a9 100644 --- a/src/controller/python/OpCredsBinding.cpp +++ b/src/controller/python/OpCredsBinding.cpp @@ -164,7 +164,6 @@ ChipError::StorageType pychip_OpCreds_AllocateController(OpCredsContext * contex Controller::SetupParams initParams; initParams.storageDelegate = sStorageAdapter; - initParams.deviceAddressUpdateDelegate = nullptr; initParams.pairingDelegate = &sPairingDelegate; initParams.operationalCredentialsDelegate = context->mAdapter.get(); initParams.operationalKeypair = &ephemeralKey; diff --git a/src/darwin/Framework/CHIP/CHIPDeviceController.mm b/src/darwin/Framework/CHIP/CHIPDeviceController.mm index 24ec342d232498..dfd201fbfef840 100644 --- a/src/darwin/Framework/CHIP/CHIPDeviceController.mm +++ b/src/darwin/Framework/CHIP/CHIPDeviceController.mm @@ -198,7 +198,6 @@ - (BOOL)startup:(_Nullable id)storageDelegate params.fabricStorage = _fabricStorage; params.fabricIndependentStorage = _persistentStorageDelegateBridge; commissionerParams.storageDelegate = _persistentStorageDelegateBridge; - commissionerParams.deviceAddressUpdateDelegate = nullptr; commissionerParams.pairingDelegate = _pairingDelegateBridge; commissionerParams.operationalCredentialsDelegate = _operationalCredentialsDelegate;