Skip to content

Commit 0b5c5ec

Browse files
committed
restyling the PR
1 parent 7b11119 commit 0b5c5ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/platform/silabs/wifi/SiWx/WifiInterface.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ void NotifySuccessfulConnection(void)
647647
struct netif * sta_netif = &wifi_client_context.netif;
648648
VerifyOrReturn(sta_netif != nullptr, ChipLogError(DeviceLayer, "HandleDHCPPolling: failed to get STA netif"));
649649
#if (CHIP_DEVICE_CONFIG_ENABLE_IPV4)
650-
wfx_dhcp_got_ipv4((uint32_t) sta_netif->ip_addr.u_addr.ip4.addr)
650+
wfx_dhcp_got_ipv4((uint32_t) sta_netif->ip_addr.u_addr.ip4.addr);
651651
#endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */
652652
char addrStr[chip::Inet::IPAddress::kMaxStringLength] = { 0 };
653653
VerifyOrReturn(ip6addr_ntoa_r(netif_ip6_addr(sta_netif, 0), addrStr, sizeof(addrStr)) != nullptr);
@@ -849,7 +849,6 @@ void wfx_dhcp_got_ipv4(uint32_t ip)
849849
}
850850
#endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */
851851

852-
853852
#if CHIP_CONFIG_ENABLE_ICD_SERVER
854853
sl_status_t ConfigurePowerSave(rsi_power_save_profile_mode_t sl_si91x_ble_state, sl_si91x_performance_profile_t sl_si91x_wifi_state,
855854
uint32_t listenInterval)

0 commit comments

Comments
 (0)