media: tuners: mxl603: Switch back to use struct i2c_driver::probe

struct i2c_driver::probe_new is about to go away. Switch the driver to
    use the probe callback with the same prototype.
This commit is contained in:
CrazyCat
2023-11-17 22:25:54 +02:00
parent ea7de28f2a
commit 7d8e5de4ac

View File

@@ -572,7 +572,7 @@ static struct i2c_driver mxl603_driver = {
.driver = {
.name = "mxl603",
},
.probe_new = mxl603_probe,
.probe = mxl603_probe,
.remove = mxl603_remove,
.id_table = mxl603_id_table,
};