diff --git a/drivers/wifi/esp/esp.c b/drivers/wifi/esp/esp.c index f08dddf2c93..0bd9e5d1509 100644 --- a/drivers/wifi/esp/esp.c +++ b/drivers/wifi/esp/esp.c @@ -1155,7 +1155,7 @@ error: return ret; } -NET_DEVICE_DT_INST_OFFLOAD_DEFINE(0, esp_init, device_pm_control_nop, +NET_DEVICE_DT_INST_OFFLOAD_DEFINE(0, esp_init, NULL, &esp_driver_data, NULL, CONFIG_WIFI_INIT_PRIORITY, &esp_api, ESP_MTU); diff --git a/drivers/wifi/esp32/src/esp_wifi_drv.c b/drivers/wifi/esp32/src/esp_wifi_drv.c index 85018e086ee..62a65a664c3 100644 --- a/drivers/wifi/esp32/src/esp_wifi_drv.c +++ b/drivers/wifi/esp32/src/esp_wifi_drv.c @@ -178,7 +178,7 @@ static const struct ethernet_api eth_esp32_apis = { }; NET_DEVICE_DT_INST_DEFINE(0, - eth_esp32_dev_init, device_pm_control_nop, + eth_esp32_dev_init, NULL, ð_data, NULL, CONFIG_ETH_INIT_PRIORITY, ð_esp32_apis, ETHERNET_L2, NET_L2_GET_CTX_TYPE(ETHERNET_L2), NET_ETH_MTU); diff --git a/drivers/wifi/eswifi/eswifi_core.c b/drivers/wifi/eswifi/eswifi_core.c index 70584d43e88..42ef3f26562 100644 --- a/drivers/wifi/eswifi/eswifi_core.c +++ b/drivers/wifi/eswifi/eswifi_core.c @@ -689,7 +689,7 @@ static const struct net_wifi_mgmt_offload eswifi_offload_api = { .ap_disable = eswifi_mgmt_ap_disable, }; -NET_DEVICE_DT_INST_OFFLOAD_DEFINE(0, eswifi_init, device_pm_control_nop, +NET_DEVICE_DT_INST_OFFLOAD_DEFINE(0, eswifi_init, NULL, &eswifi0, NULL, CONFIG_WIFI_INIT_PRIORITY, &eswifi_offload_api, diff --git a/drivers/wifi/simplelink/simplelink.c b/drivers/wifi/simplelink/simplelink.c index e59aa556b8f..cc213ab433a 100644 --- a/drivers/wifi/simplelink/simplelink.c +++ b/drivers/wifi/simplelink/simplelink.c @@ -283,7 +283,7 @@ static int simplelink_init(const struct device *dev) } NET_DEVICE_OFFLOAD_INIT(simplelink, CONFIG_WIFI_SIMPLELINK_NAME, - simplelink_init, device_pm_control_nop, + simplelink_init, NULL, &simplelink_data, NULL, CONFIG_WIFI_INIT_PRIORITY, &simplelink_api, CONFIG_WIFI_SIMPLELINK_MAX_PACKET_SIZE); diff --git a/drivers/wifi/winc1500/wifi_winc1500.c b/drivers/wifi/winc1500/wifi_winc1500.c index b5dd1e98b0e..d9ee285a20d 100644 --- a/drivers/wifi/winc1500/wifi_winc1500.c +++ b/drivers/wifi/winc1500/wifi_winc1500.c @@ -1167,6 +1167,6 @@ static int winc1500_init(const struct device *dev) } NET_DEVICE_OFFLOAD_INIT(winc1500, CONFIG_WIFI_WINC1500_NAME, - winc1500_init, device_pm_control_nop, &w1500_data, NULL, + winc1500_init, NULL, &w1500_data, NULL, CONFIG_WIFI_INIT_PRIORITY, &winc1500_api, CONFIG_WIFI_WINC1500_MAX_PACKET_SIZE);