From 63412699956532ed87006e50c13ea7a807bfca0e Mon Sep 17 00:00:00 2001 From: DevikaJaladi <155776845+DevikaJaladi@users.noreply.github.com> Date: Thu, 10 Sep 2026 13:46:28 -0400 Subject: [PATCH] RDKEMW-24854: Remove active scan on DeepSleep wake-up Removed active WiFi scan trigger when waking from DeepSleep. --- plugin/NetworkManagerImplementation.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/plugin/NetworkManagerImplementation.cpp b/plugin/NetworkManagerImplementation.cpp index 1ba0509a..2defd917 100644 --- a/plugin/NetworkManagerImplementation.cpp +++ b/plugin/NetworkManagerImplementation.cpp @@ -1495,15 +1495,6 @@ namespace WPEFramework if (m_wlanEnabled.load() && m_wlanConnected.load()) { - // Waking from DeepSleep with Network Standby ON: the AP may have - // changed channel while the device slept (802.11 CSA). Trigger an - // active scan so the driver discovers the AP on its new channel. - NMLOG_INFO("OnPowerModeChanged: waking from DeepSleep, triggering active WiFi scan"); - if (StartWiFiScan(nullptr, nullptr) != Core::ERROR_NONE) - { - NMLOG_ERROR("OnPowerModeChanged: StartWiFiScan failed"); - } - NMLOG_INFO("OnPowerModeChanged: waking from DeepSleep, requesting DHCP lease on wlan0"); if (ReacquireDHCPLease("wlan0") != Core::ERROR_NONE) {