]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
wifi: mac80211: fix incorrect type for ret
authorLiao Yuanhong <liaoyuanhong@vivo.com>
Mon, 25 Aug 2025 02:29:11 +0000 (10:29 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Sep 2025 08:58:50 +0000 (10:58 +0200)
[ Upstream commit a33b375ab5b3a9897a0ab76be8258d9f6b748628 ]

The variable ret is declared as a u32 type, but it is assigned a value
of -EOPNOTSUPP. Since unsigned types cannot correctly represent negative
values, the type of ret should be changed to int.

Signed-off-by: Liao Yuanhong <liaoyuanhong@vivo.com>
Link: https://patch.msgid.link/20250825022911.139377-1-liaoyuanhong@vivo.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/mac80211/driver-ops.h

index e685c12757f4bf6b0dffd39366f9cbffeb14156b..1f961944ecc98bc1a62eaddd52b8225ee82f9c09 100644 (file)
@@ -1216,7 +1216,7 @@ drv_get_ftm_responder_stats(struct ieee80211_local *local,
                            struct ieee80211_sub_if_data *sdata,
                            struct cfg80211_ftm_responder_stats *ftm_stats)
 {
-       u32 ret = -EOPNOTSUPP;
+       int ret = -EOPNOTSUPP;
 
        if (local->ops->get_ftm_responder_stats)
                ret = local->ops->get_ftm_responder_stats(&local->hw,