From 2120771834d6409c36d6307c6da4b5d559b8ae75 Mon Sep 17 00:00:00 2001 From: LeelakumarPS <114213294+LeelakumarPS@users.noreply.github.com> Date: Wed, 8 Feb 2023 01:07:32 +0530 Subject: [PATCH] Adds support for WF200 IPv4 enable (#24903) --- examples/platform/silabs/efr32/wf200/host_if.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platform/silabs/efr32/wf200/host_if.cpp b/examples/platform/silabs/efr32/wf200/host_if.cpp index faa2262bc7c090..740e709e69029e 100644 --- a/examples/platform/silabs/efr32/wf200/host_if.cpp +++ b/examples/platform/silabs/efr32/wf200/host_if.cpp @@ -554,7 +554,7 @@ static void wfx_events_task(void * p_arg) if ((now = xTaskGetTickCount()) > (last_dhcp_poll + pdMS_TO_TICKS(250))) { #if (CHIP_DEVICE_CONFIG_ENABLE_IPV4) - uint8_t dhcp_state = dhcpclient_poll(&sta_netif); + uint8_t dhcp_state = dhcpclient_poll(sta_netif); if ((dhcp_state == DHCP_ADDRESS_ASSIGNED) && !hasNotifiedIPV4) {