Skip to content

Commit 4040aa0

Browse files
krish2718carlescufi
authored andcommitted
[nrf noup] wifi_mgmt: Fix comments for PS exit strategy choices
nrf-squash! [nrf noup] wifi_mgmt: Add support for configuring PS exit strategy The comments were not updated when enumerations were swapped. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent 0905478 commit 4040aa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/zephyr/net/wifi.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,10 +419,10 @@ const char *wifi_ps_wakeup_mode_txt(enum wifi_ps_wakeup_mode ps_wakeup_mode);
419419
* Wi-Fi power save exit strategy
420420
*/
421421
enum wifi_ps_exit_strategy {
422-
/** PS-Poll frame based */
423-
WIFI_PS_EXIT_CUSTOM_ALGO = 0,
424422
/** QoS NULL frame based */
425-
WIFI_PS_EXIT_EVERY_TIM,
423+
WIFI_PS_EXIT_EVERY_TIM = 0,
424+
/** Uses a proprietary combination of PS-Poll and QoS-Null/Null */
425+
WIFI_PS_EXIT_CUSTOM_ALGO,
426426

427427
/** Last value */
428428
WIFI_PS_EXIT_LAST,

0 commit comments

Comments
 (0)