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 noup] wifi_mgmt: Fix comments for PS exit strategy choices #2021

Merged
merged 1 commit into from
Sep 11, 2024
Merged
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
6 changes: 3 additions & 3 deletions include/zephyr/net/wifi.h
Original file line number Diff line number Diff line change
Expand Up @@ -419,10 +419,10 @@ const char *wifi_ps_wakeup_mode_txt(enum wifi_ps_wakeup_mode ps_wakeup_mode);
* Wi-Fi power save exit strategy
*/
enum wifi_ps_exit_strategy {
/** PS-Poll frame based */
WIFI_PS_EXIT_CUSTOM_ALGO = 0,
/** QoS NULL frame based */
WIFI_PS_EXIT_EVERY_TIM,
WIFI_PS_EXIT_EVERY_TIM = 0,
/** Uses a proprietary combination of PS-Poll and QoS-Null/Null */
WIFI_PS_EXIT_CUSTOM_ALGO,

/** Last value */
WIFI_PS_EXIT_LAST,
Expand Down
Loading