summaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-adnp.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2022-06-28 22:59:12 +0300
committerBartosz Golaszewski <brgl@bgdev.pl>2022-07-19 09:57:13 +0200
commita2a15e1263ab1c17f798eab1290180ffa4011223 (patch)
tree127042cc3de41c89a05b342e11630b65b62deae7 /drivers/gpio/gpio-adnp.c
parentd274f02eb98be8ec1d13bb9d16493eb1711a3d37 (diff)
downloadlinux-stable-a2a15e1263ab1c17f798eab1290180ffa4011223.tar.gz
linux-stable-a2a15e1263ab1c17f798eab1290180ffa4011223.tar.bz2
linux-stable-a2a15e1263ab1c17f798eab1290180ffa4011223.zip
gpio: adnp: use simple i2c probe function
The i2c probe functions here don't use the id information provided in their second argument, so the single-parameter i2c probe function ("probe_new") can be used instead. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Diffstat (limited to 'drivers/gpio/gpio-adnp.c')
-rw-r--r--drivers/gpio/gpio-adnp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-adnp.c b/drivers/gpio/gpio-adnp.c
index cc349d4e4973..075782831044 100644
--- a/drivers/gpio/gpio-adnp.c
+++ b/drivers/gpio/gpio-adnp.c
@@ -485,8 +485,7 @@ static int adnp_gpio_setup(struct adnp *adnp, unsigned int num_gpios,
return 0;
}
-static int adnp_i2c_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int adnp_i2c_probe(struct i2c_client *client)
{
struct device_node *np = client->dev.of_node;
struct adnp *adnp;
@@ -535,7 +534,7 @@ static struct i2c_driver adnp_i2c_driver = {
.name = "gpio-adnp",
.of_match_table = adnp_of_match,
},
- .probe = adnp_i2c_probe,
+ .probe_new = adnp_i2c_probe,
.id_table = adnp_i2c_id,
};
module_i2c_driver(adnp_i2c_driver);