]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
pinctrl: ocelot: remove redundant assignment to variable ret
authorColin Ian King <colin.i.king@gmail.com>
Fri, 23 Feb 2024 16:28:50 +0000 (16:28 +0000)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 29 Feb 2024 13:38:09 +0000 (14:38 +0100)
commit170c96246f0c5eefee9b14b105caaafef7d4cf57
tree98b836eabc92c04b5aea7e74507fe407a222f418
parent2805464831dd4c5c285c6e6ef42f2697c80e2fd6
pinctrl: ocelot: remove redundant assignment to variable ret

The variable ret is being assigned a value that is never read, it
is being re-assigned a value in every case statement in the following
switch statement. The assignment is redundant and can be removed.

Cleans up clang scan build warning:
drivers/pinctrl/pinctrl-ocelot.c:1404:3: warning: Value stored to 'ret'
is never read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20240223162850.3914349-1-colin.i.king@gmail.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-ocelot.c