Skip to content

Commit

Permalink
[nrf noup] wifi_mgmt: Fix comments for PS exit strategy choices
Browse files Browse the repository at this point in the history
nrf-squash! [nrf noup] wifi_mgmt: Add support for configuring PS exit strategy

The comments were not updated when enumerations were swapped.
  • Loading branch information
Chaitanya Tata authored and krish2718 committed Sep 11, 2024
1 parent 0905478 commit 3c7f005
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 3c7f005

Please sign in to comment.