|
@@ -839,16 +839,12 @@ static int bmc150_magn_gpio_probe(struct i2c_client *client)
|
|
|
dev = &client->dev;
|
|
|
|
|
|
/* data ready GPIO interrupt pin */
|
|
|
- gpio = devm_gpiod_get_index(dev, BMC150_MAGN_GPIO_INT, 0);
|
|
|
+ gpio = devm_gpiod_get_index(dev, BMC150_MAGN_GPIO_INT, 0, GPIOD_IN);
|
|
|
if (IS_ERR(gpio)) {
|
|
|
dev_err(dev, "ACPI GPIO get index failed\n");
|
|
|
return PTR_ERR(gpio);
|
|
|
}
|
|
|
|
|
|
- ret = gpiod_direction_input(gpio);
|
|
|
- if (ret)
|
|
|
- return ret;
|
|
|
-
|
|
|
ret = gpiod_to_irq(gpio);
|
|
|
|
|
|
dev_dbg(dev, "GPIO resource, no:%d irq:%d\n", desc_to_gpio(gpio), ret);
|