Commit 0ece84f5 authored by Laxman Dewangan's avatar Laxman Dewangan

gpio: pca953x: Use devm_gpiochip_add_data() for gpio registration

Use devm_gpiochip_add_data() for GPIO registration.
Signed-off-by: default avatarLaxman Dewangan <ldewangan@nvidia.com>
parent 1533d4fd
...@@ -754,7 +754,7 @@ static int pca953x_probe(struct i2c_client *client, ...@@ -754,7 +754,7 @@ static int pca953x_probe(struct i2c_client *client,
if (ret) if (ret)
return ret; return ret;
ret = gpiochip_add_data(&chip->gpio_chip, chip); ret = devm_gpiochip_add_data(&client->dev, &chip->gpio_chip, chip);
if (ret) if (ret)
return ret; return ret;
...@@ -789,8 +789,6 @@ static int pca953x_remove(struct i2c_client *client) ...@@ -789,8 +789,6 @@ static int pca953x_remove(struct i2c_client *client)
} }
} }
gpiochip_remove(&chip->gpio_chip);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment