From a5dd93231443168970a00d93fb8d52c0aa84cb16 Mon Sep 17 00:00:00 2001 From: Gang Li Date: Thu, 5 Jun 2025 12:25:26 +0200 Subject: [PATCH] drivers: wifi: add support for fetching inactivity duration In SAP mode, need to fetch the inactivity duration. Signed-off-by: Gang Li --- drivers/wifi/nxp/nxp_wifi_drv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/wifi/nxp/nxp_wifi_drv.c b/drivers/wifi/nxp/nxp_wifi_drv.c index 07e886628e8..aab8dae2d76 100644 --- a/drivers/wifi/nxp/nxp_wifi_drv.c +++ b/drivers/wifi/nxp/nxp_wifi_drv.c @@ -2187,6 +2187,7 @@ static const struct zep_wpa_supp_dev_ops nxp_wifi_drv_ops = { .sta_remove = wifi_nxp_hostapd_sta_remove, .sta_add = wifi_nxp_hostapd_sta_add, .do_acs = wifi_nxp_hostapd_do_acs, + .get_inact_sec = wifi_nxp_wpa_supp_sta_get_inact_sec, #endif .dpp_listen = wifi_nxp_wpa_dpp_listen, .remain_on_channel = wifi_nxp_wpa_supp_remain_on_channel,