From: Vasiliy Doylov <nekodevelopper@xxxxxxxxx> This will make the driver probe-able via device-tree. While the I2C match table may be sufficient, this should extend the cover of this driver being probed by other methods. Signed-off-by: Vasiliy Doylov <nekodevelopper@xxxxxxxxx> --- drivers/iio/accel/mc3230.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/iio/accel/mc3230.c b/drivers/iio/accel/mc3230.c index 48787c0494ae6f0ef1d4d22bc5a4608035cbe123..3cad6f2d7a2a79df38f90e5656763f6ed019a920 100644 --- a/drivers/iio/accel/mc3230.c +++ b/drivers/iio/accel/mc3230.c @@ -205,10 +205,17 @@ static const struct i2c_device_id mc3230_i2c_id[] = { }; MODULE_DEVICE_TABLE(i2c, mc3230_i2c_id); +static const struct of_device_id mc3230_of_match[] = { + { .compatible = "mcube,mc3230" }, + { }, +}; +MODULE_DEVICE_TABLE(of, mc3230_of_match); + static struct i2c_driver mc3230_driver = { .driver = { .name = "mc3230", .pm = pm_sleep_ptr(&mc3230_pm_ops), + .of_match_table = mc3230_of_match, }, .probe = mc3230_probe, .remove = mc3230_remove, -- 2.47.1