mfd: mc13xxx: Fix a missing check of a register-read failure
authorKangjie Lu <kjlu@umn.edu>
Thu, 20 Dec 2018 21:12:11 +0000 (15:12 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 27 Feb 2019 09:08:52 +0000 (10:08 +0100)
commit7fc59021c1f5e3ae88d3edd44cfbbe407d6e8909
tree9274ab4f710adeb688e8ef3bf48fa0cc87c35925
parente42296ae45a63f6e378a23fe3b4f4d58f9757566
mfd: mc13xxx: Fix a missing check of a register-read failure

[ Upstream commit 9e28989d41c0eab57ec0bb156617a8757406ff8a ]

When mc13xxx_reg_read() fails, "old_adc0" is uninitialized and will
contain random value. Further execution uses "old_adc0" even when
mc13xxx_reg_read() fails.
The fix checks the return value of mc13xxx_reg_read(), and exits
the execution when it fails.

Signed-off-by: Kangjie Lu <kjlu@umn.edu>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/mfd/mc13xxx-core.c