From 6144d63762d308fc7b9972a545a393f523389619 Mon Sep 17 00:00:00 2001 From: nakul kachhwaha Date: Tue, 6 May 2025 10:50:48 +0530 Subject: [PATCH] Fix QCA vendor attribute documentation Fix the list of valid values for the attribute QCA_WLAN_VENDOR_ATTR_TWT_NUDGE_NEXT_TWT_SIZE in the comment section. This was not supposed to be a bitmap, but a consecutive sequence of integers. The previously defined value has not been used. Signed-off-by: nakul kachhwaha --- src/common/qca-vendor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 4a38dc3ba..b80ded208 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -11640,7 +11640,7 @@ enum qca_wlan_vendor_attr_twt_resume { * @QCA_WLAN_VENDOR_ATTR_TWT_NUDGE_NEXT_TWT_SIZE: Required (u32) * This attribute represents the next TWT subfield size. * Value 0 represents 0 bits, 1 represents 32 bits, 2 for 48 bits, - * and 4 for 64 bits. + * and 3 for 64 bits. * * @QCA_WLAN_VENDOR_ATTR_TWT_NUDGE_MAC_ADDR: 6-byte MAC address * Represents the MAC address of the peer to which TWT Suspend and Resume is -- 2.47.3