Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nrf fromtree] drivers: nrf_wifi: Initialize TWT response parameters … #2361

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions drivers/wifi/nrf_wifi/src/wifi_mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -620,9 +620,9 @@
unsigned int event_len)
{
struct nrf_wifi_vif_ctx_zep *vif_ctx_zep = NULL;
struct wifi_twt_params twt_params;
struct twt_interval_float twt_interval_fp;
struct wifi_twt_params twt_params = { 0 };
struct twt_interval_float twt_interval_fp = { 0 };

Check notice on line 625 in drivers/wifi/nrf_wifi/src/wifi_mgmt.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

drivers/wifi/nrf_wifi/src/wifi_mgmt.c:625 - struct wifi_twt_params twt_params = { 0 }; - struct twt_interval_float twt_interval_fp = { 0 }; + struct wifi_twt_params twt_params = {0}; + struct twt_interval_float twt_interval_fp = {0};

Check notice on line 625 in drivers/wifi/nrf_wifi/src/wifi_mgmt.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

drivers/wifi/nrf_wifi/src/wifi_mgmt.c:625 - struct wifi_twt_params twt_params = { 0 }; - struct twt_interval_float twt_interval_fp = { 0 }; + struct wifi_twt_params twt_params = {0}; + struct twt_interval_float twt_interval_fp = {0};
if (!vif_ctx || !twt_setup_info) {
return;
}
Expand Down
Loading