wifi: mac80211: clean up assignments to pointer cache.
authorColin Ian King <colin.i.king@intel.com>
Thu, 15 Feb 2024 23:21:51 +0000 (23:21 +0000)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 21 Feb 2024 14:19:03 +0000 (15:19 +0100)
commitba4b1fa3128b2fbf14e167230315cbd9074b629b
tree7d1eb91e15eab2bd33cf724229f5f857fdeaa005
parentd73fbaf24c5a1e0698a7a5e17d66a5100efef72a
wifi: mac80211: clean up assignments to pointer cache.

The assignment to pointer cache in function mesh_fast_tx_gc can
be made at the declaration time rather than a later assignment.
There are also 3 functions where pointer cache is being initialized
at declaration time and later re-assigned again with the same
value, these are redundant and can be removed.

Cleans up code and three clang scan build warnings:
warning: Value stored to 'cache' during its initialization is never
read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@intel.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://msgid.link/20240215232151.2075483-1-colin.i.king@gmail.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/mesh_pathtbl.c