From: Colin Ian King Date: Thu, 23 Jul 2020 16:15:41 +0000 (+0100) Subject: mfd: max14577: Remove redundant initialization of variable current_bits X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1f0fa85c07fb53d756219cf7e6e8e77eab6e75eb;p=linux.git mfd: max14577: Remove redundant initialization of variable current_bits The variable current_bits is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King Reviewed-by: Krzysztof Kozlowski Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/max14577.c b/drivers/mfd/max14577.c index fd8864cafd25c..be185e9d5f16b 100644 --- a/drivers/mfd/max14577.c +++ b/drivers/mfd/max14577.c @@ -61,7 +61,7 @@ EXPORT_SYMBOL_GPL(maxim_charger_currents); int maxim_charger_calc_reg_current(const struct maxim_charger_current *limits, unsigned int min_ua, unsigned int max_ua, u8 *dst) { - unsigned int current_bits = 0xf; + unsigned int current_bits; if (min_ua > max_ua) return -EINVAL;