mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-02 16:44:59 +00:00
iio: pressure: bmp280: Explicitly mark GPIO optional
Show by using a corresponding API call that GPIO is optional. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
6085102c49
commit
df6e71256c
@ -1066,9 +1066,9 @@ int bmp280_common_probe(struct device *dev,
|
|||||||
usleep_range(data->start_up_time, data->start_up_time + 100);
|
usleep_range(data->start_up_time, data->start_up_time + 100);
|
||||||
|
|
||||||
/* Bring chip out of reset if there is an assigned GPIO line */
|
/* Bring chip out of reset if there is an assigned GPIO line */
|
||||||
gpiod = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
|
gpiod = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_HIGH);
|
||||||
/* Deassert the signal */
|
/* Deassert the signal */
|
||||||
if (!IS_ERR(gpiod)) {
|
if (gpiod) {
|
||||||
dev_info(dev, "release reset\n");
|
dev_info(dev, "release reset\n");
|
||||||
gpiod_set_value(gpiod, 0);
|
gpiod_set_value(gpiod, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user