From a81925ad324ca92655db17b80d04ed65df56fc0b Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 5 Apr 2023 11:16:45 +0200 Subject: [PATCH] core: call nm_manager_device_recheck_auto_activate_schedule() from "nm-manager.c" No need to call down to the device, to call back up to the NMManager. --- src/core/nm-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/nm-manager.c b/src/core/nm-manager.c index 3fee16e98..99afb2f93 100644 --- a/src/core/nm-manager.c +++ b/src/core/nm-manager.c @@ -3900,7 +3900,7 @@ _device_realize_finish(NMManager *self, NMDevice *device, const NMPlatformLink * nm_device_state_changed(device, NM_DEVICE_STATE_UNAVAILABLE, NM_DEVICE_STATE_REASON_NOW_MANAGED); - nm_device_recheck_auto_activate_schedule(device); + nm_manager_device_recheck_auto_activate_schedule(self, device); } /**