diff options
author | Laxman Dewangan <ldewangan@nvidia.com> | 2016-02-22 07:13:28 -0500 |
---|---|---|
committer | Laxman Dewangan <ldewangan@nvidia.com> | 2016-02-23 10:05:38 -0500 |
commit | 0ece84f54a3324318c209d5aa9beffa281f2e122 (patch) | |
tree | b95bf19af69bad377f9fd9908fa1f64496ada038 /drivers/gpio/gpio-pca953x.c | |
parent | 1533d4fd33775f789cb3c3d282aa242006466825 (diff) |
gpio: pca953x: Use devm_gpiochip_add_data() for gpio registration
Use devm_gpiochip_add_data() for GPIO registration.
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Diffstat (limited to 'drivers/gpio/gpio-pca953x.c')
-rw-r--r-- | drivers/gpio/gpio-pca953x.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c index 23196c5fc17c..b7fe5d5e3488 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c | |||
@@ -754,7 +754,7 @@ static int pca953x_probe(struct i2c_client *client, | |||
754 | if (ret) | 754 | if (ret) |
755 | return ret; | 755 | return ret; |
756 | 756 | ||
757 | ret = gpiochip_add_data(&chip->gpio_chip, chip); | 757 | ret = devm_gpiochip_add_data(&client->dev, &chip->gpio_chip, chip); |
758 | if (ret) | 758 | if (ret) |
759 | return ret; | 759 | return ret; |
760 | 760 | ||
@@ -789,8 +789,6 @@ static int pca953x_remove(struct i2c_client *client) | |||
789 | } | 789 | } |
790 | } | 790 | } |
791 | 791 | ||
792 | gpiochip_remove(&chip->gpio_chip); | ||
793 | |||
794 | return 0; | 792 | return 0; |
795 | } | 793 | } |
796 | 794 | ||