diff --git a/drivers/wifi/nxp/nxp_wifi_drv.c b/drivers/wifi/nxp/nxp_wifi_drv.c index e8b942fc99a..07e886628e8 100644 --- a/drivers/wifi/nxp/nxp_wifi_drv.c +++ b/drivers/wifi/nxp/nxp_wifi_drv.c @@ -1731,6 +1731,13 @@ static int nxp_wifi_reg_domain(const struct device *dev, struct wifi_reg_domain LOG_ERR("Unable to set country code: %s", reg_domain->country_code); return -EAGAIN; } + + ret = wlan_create_dnld_countryinfo(); + if (ret != WM_SUCCESS) { + LOG_ERR("Unable to create and download countryinfo"); + return -EAGAIN; + } + } return 0; }