]> git.ipfire.org Git - thirdparty/linux.git/commit
wifi: nl80211: use int for band coming from netlink
authorJohannes Berg <johannes.berg@intel.com>
Mon, 16 Mar 2026 11:30:50 +0000 (12:30 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Thu, 19 Mar 2026 08:07:40 +0000 (09:07 +0100)
commitf10ebd136dfef1d8fac0ac29587e7e898c980e3e
treea4b6b9c7bad5c278165ff2d4d7f2c3f2fd669331
parent777d8ba5aada960c666f810d5d820ab55ebb64c3
wifi: nl80211: use int for band coming from netlink

This was pointed out before, but there are issues with just
removing the <0 check since enum representation isn't fixed,
nla_type() returns int but really can only return small
non-negative values, etc. Now newer versions of sparse are
also starting to warn on it. Just use int for the band var.

Link: https://patch.msgid.link/20260316123050.8c2d9f3426a0.I86acfa785982993fbffd148cc59049991bd6158f@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/nl80211.c