driver: regulator: npm1300: fix build warning
regulator_npm1300_init() generated uninitialized variable warning. Fix this by being consistent in the error checking in underlying function. Signed-off-by: Audun Korneliussen <audun.korneliussen@nordicsemi.no>
This commit is contained in:
parent
b9058e8d18
commit
7da4f4d9cd
|
@ -533,7 +533,7 @@ static int get_enabled_reg(const struct device *dev, uint8_t base, uint8_t offse
|
||||||
|
|
||||||
int ret = mfd_npm1300_reg_read(config->mfd, base, offset, &data);
|
int ret = mfd_npm1300_reg_read(config->mfd, base, offset, &data);
|
||||||
|
|
||||||
if (ret != 0) {
|
if (ret < 0) {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue