mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 19:50:53 +07:00
gpio: octeon: Use devm_gpiochip_add_data() for gpio registration
Use devm_gpiochip_add_data() for GPIO registration and remove the need of driver callback .remove. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
This commit is contained in:
parent
ffc566303e
commit
1533d4fd33
@ -117,7 +117,7 @@ static int octeon_gpio_probe(struct platform_device *pdev)
|
||||
chip->get = octeon_gpio_get;
|
||||
chip->direction_output = octeon_gpio_dir_out;
|
||||
chip->set = octeon_gpio_set;
|
||||
err = gpiochip_add_data(chip, gpio);
|
||||
err = devm_gpiochip_add_data(&pdev->dev, chip, gpio);
|
||||
if (err)
|
||||
goto out;
|
||||
|
||||
@ -126,13 +126,6 @@ static int octeon_gpio_probe(struct platform_device *pdev)
|
||||
return err;
|
||||
}
|
||||
|
||||
static int octeon_gpio_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct gpio_chip *chip = dev_get_platdata(&pdev->dev);
|
||||
gpiochip_remove(chip);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct of_device_id octeon_gpio_match[] = {
|
||||
{
|
||||
.compatible = "cavium,octeon-3860-gpio",
|
||||
@ -147,7 +140,6 @@ static struct platform_driver octeon_gpio_driver = {
|
||||
.of_match_table = octeon_gpio_match,
|
||||
},
|
||||
.probe = octeon_gpio_probe,
|
||||
.remove = octeon_gpio_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(octeon_gpio_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user