Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

regulator: max77620: remove redundant assignment to variable ret

The variable ret 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 <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20190703082009.18779-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Colin Ian King and committed by
Mark Brown
a3c7c029 d6d02bc6

+1 -1
+1 -1
drivers/regulator/max77620-regulator.c
··· 467 467 { 468 468 struct max77620_regulator *pmic = rdev_get_drvdata(rdev); 469 469 int id = rdev_get_id(rdev); 470 - int ret = 1; 470 + int ret; 471 471 472 472 if (pmic->active_fps_src[id] != MAX77620_FPS_SRC_NONE) 473 473 return 1;