proximity: vl53l0x: Make VDD regulator actually optional
authorLuca Weiss <luca.weiss@fairphone.com>
Tue, 14 Jun 2022 11:20:50 +0000 (13:20 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 18 Jun 2022 16:55:17 +0000 (17:55 +0100)
commit82c89365733e28f39ef4a4d479c124f9f1e63671
tree68617113b170d192832003442ef6e457b05067c4
parent0b685f435769bec6fe766da3c911a51b3afa9993
proximity: vl53l0x: Make VDD regulator actually optional

Contrary to what the naming might suggest, devm_regulator_get_optional
returns -ENODEV in case the regulator is not found which will trigger
probe error in this driver.

Use devm_regulator_get instead which will return a dummy regulator that
we can just use as if it was a proper regulator.

Fixes: d3d6dba56dab ("proximity: vl53l0x: Handle the VDD regulator")
Signed-off-by: Luca Weiss <luca.weiss@fairphone.com>
Link: https://lore.kernel.org/r/20220614112049.302278-1-luca.weiss@fairphone.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/proximity/vl53l0x-i2c.c