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

net: dsa: microchip: ksz9477: Convert to i2c's .probe_new()

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent c479babc
...@@ -14,8 +14,7 @@ ...@@ -14,8 +14,7 @@
KSZ_REGMAP_TABLE(ksz9477, not_used, 16, 0, 0); KSZ_REGMAP_TABLE(ksz9477, not_used, 16, 0, 0);
static int ksz9477_i2c_probe(struct i2c_client *i2c, static int ksz9477_i2c_probe(struct i2c_client *i2c)
const struct i2c_device_id *i2c_id)
{ {
struct regmap_config rc; struct regmap_config rc;
struct ksz_device *dev; struct ksz_device *dev;
...@@ -120,7 +119,7 @@ static struct i2c_driver ksz9477_i2c_driver = { ...@@ -120,7 +119,7 @@ static struct i2c_driver ksz9477_i2c_driver = {
.name = "ksz9477-switch", .name = "ksz9477-switch",
.of_match_table = of_match_ptr(ksz9477_dt_ids), .of_match_table = of_match_ptr(ksz9477_dt_ids),
}, },
.probe = ksz9477_i2c_probe, .probe_new = ksz9477_i2c_probe,
.remove = ksz9477_i2c_remove, .remove = ksz9477_i2c_remove,
.shutdown = ksz9477_i2c_shutdown, .shutdown = ksz9477_i2c_shutdown,
.id_table = ksz9477_i2c_id, .id_table = ksz9477_i2c_id,
......
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