From 1d0ee1908b1ea61ae2639feef9342d2f5d941d74 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 3 Nov 2022 19:22:53 +0200 Subject: [PATCH] Fix the vendor ID assignment for configuring periodic sounding This was supposed to update the requested value to the next available one, not to duplicate the already assigned value. Fixes: b17b86da4765 ("QCA vendor attribute to configure periodic sounding") Signed-off-by: Jouni Malinen --- 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 2a8d42930..eec7060be 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -2822,7 +2822,7 @@ enum qca_wlan_vendor_attr_config { * 0 - Default behavior. * 1 - Enable the periodic sounding for Tx beamformer. */ - QCA_WLAN_VENDOR_ATTR_CONFIG_BEAMFORMER_PERIODIC_SOUNDING = 84, + QCA_WLAN_VENDOR_ATTR_CONFIG_BEAMFORMER_PERIODIC_SOUNDING = 85, /* keep last */ QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST, -- 2.47.2