Commit cb405c2a authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Jakub Kicinski

net/mlxsw: 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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: default avatarIdo Schimmel <idosch@nvidia.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent dfd5e53d
...@@ -632,9 +632,9 @@ static const struct mlxsw_bus mlxsw_i2c_bus = { ...@@ -632,9 +632,9 @@ static const struct mlxsw_bus mlxsw_i2c_bus = {
.cmd_exec = mlxsw_i2c_cmd_exec, .cmd_exec = mlxsw_i2c_cmd_exec,
}; };
static int mlxsw_i2c_probe(struct i2c_client *client, static int mlxsw_i2c_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
const struct i2c_adapter_quirks *quirks = client->adapter->quirks; const struct i2c_adapter_quirks *quirks = client->adapter->quirks;
struct mlxsw_i2c *mlxsw_i2c; struct mlxsw_i2c *mlxsw_i2c;
u8 status; u8 status;
...@@ -751,7 +751,7 @@ static void mlxsw_i2c_remove(struct i2c_client *client) ...@@ -751,7 +751,7 @@ static void mlxsw_i2c_remove(struct i2c_client *client)
int mlxsw_i2c_driver_register(struct i2c_driver *i2c_driver) int mlxsw_i2c_driver_register(struct i2c_driver *i2c_driver)
{ {
i2c_driver->probe = mlxsw_i2c_probe; i2c_driver->probe_new = mlxsw_i2c_probe;
i2c_driver->remove = mlxsw_i2c_remove; i2c_driver->remove = mlxsw_i2c_remove;
return i2c_add_driver(i2c_driver); return i2c_add_driver(i2c_driver);
} }
......
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