mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
gpio: adp5588: Use devm_gpiochip_add_data() for gpio registration
Use devm_gpiochip_add_data() for GPIO registration and remove the call for gpiochip_remove() from remove callback. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Cc: Michael Hennerich <michael.hennerich@analog.com> Acked-by: Michael Hennerich <michael.hennerich@analog.com>
This commit is contained in:
parent
8ae6ace128
commit
7c263fe025
@ -414,7 +414,7 @@ static int adp5588_gpio_probe(struct i2c_client *client,
|
||||
}
|
||||
}
|
||||
|
||||
ret = gpiochip_add_data(&dev->gpio_chip, dev);
|
||||
ret = devm_gpiochip_add_data(&client->dev, &dev->gpio_chip, dev);
|
||||
if (ret)
|
||||
goto err_irq;
|
||||
|
||||
@ -457,8 +457,6 @@ static int adp5588_gpio_remove(struct i2c_client *client)
|
||||
if (dev->irq_base)
|
||||
free_irq(dev->client->irq, dev);
|
||||
|
||||
gpiochip_remove(&dev->gpio_chip);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user