mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
pinctrl: mcp23s08: Convert to i2c's .probe_new()
.probe_new() doesn't get the i2c_device_id * parameter, so determine that explicitly in the probe function. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20221118224540.619276-511-uwe@kleine-koenig.org Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
814ee08d9e
commit
8bb5811129
@ -8,8 +8,9 @@
|
|||||||
|
|
||||||
#include "pinctrl-mcp23s08.h"
|
#include "pinctrl-mcp23s08.h"
|
||||||
|
|
||||||
static int mcp230xx_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
static int mcp230xx_probe(struct i2c_client *client)
|
||||||
{
|
{
|
||||||
|
const struct i2c_device_id *id = i2c_client_get_device_id(client);
|
||||||
struct device *dev = &client->dev;
|
struct device *dev = &client->dev;
|
||||||
unsigned int type = id->driver_data;
|
unsigned int type = id->driver_data;
|
||||||
struct mcp23s08 *mcp;
|
struct mcp23s08 *mcp;
|
||||||
@ -100,7 +101,7 @@ static struct i2c_driver mcp230xx_driver = {
|
|||||||
.name = "mcp230xx",
|
.name = "mcp230xx",
|
||||||
.of_match_table = mcp23s08_i2c_of_match,
|
.of_match_table = mcp23s08_i2c_of_match,
|
||||||
},
|
},
|
||||||
.probe = mcp230xx_probe,
|
.probe_new = mcp230xx_probe,
|
||||||
.id_table = mcp230xx_id,
|
.id_table = mcp230xx_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user