net: wireless: wext_compat.c: Remove redundant assignment to ps
authorYang Li <yang.lee@linux.alibaba.com>
Wed, 28 Apr 2021 09:59:05 +0000 (17:59 +0800)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 23 Jun 2021 08:57:29 +0000 (10:57 +0200)
commitc2a8637c055e4ea86cd414bbf02034d1449685cc
tree0789668a127fa2b52209ecd31c2a50f7f550f8ca
parente93bdd78406da9ed01554c51e38b2a02c8ef8025
net: wireless: wext_compat.c: Remove redundant assignment to ps

Variable 'ps' is set to wdev->ps but this value is never read as it is
overwritten with a new value later on, hence it is a redundant
assignment and can be removed.

Cleans up the following clang-analyzer warning:

net/wireless/wext-compat.c:1170:7: warning: Value stored to 'ps' during
its initialization is never read [clang-analyzer-deadcode.DeadStores]

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/1619603945-116891-1-git-send-email-yang.lee@linux.alibaba.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/wext-compat.c