Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: mlx96014: Add OF device ID table

The driver doesn't have a struct of_device_id table but supported devices
are registered via Device Trees. This is working on the assumption that a
I2C device registered via OF will always match a legacy I2C device ID and
that the MODALIAS reported will always be of the form i2c:<device>.

But this could change in the future so the correct approach is to have an
OF device ID table if the devices are registered via OF.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Tested-by: Crt Mori <cmo@melexis.com>
Acked-by: Crt Mori <cmo@melexis.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>

authored by

Javier Martinez Canillas and committed by
Jonathan Cameron
58623b33 62aaca0d

+7
+7
drivers/iio/temperature/mlx90614.c
··· 585 585 }; 586 586 MODULE_DEVICE_TABLE(i2c, mlx90614_id); 587 587 588 + static const struct of_device_id mlx90614_of_match[] = { 589 + { .compatible = "melexis,mlx90614" }, 590 + { } 591 + }; 592 + MODULE_DEVICE_TABLE(of, mlx90614_of_match); 593 + 588 594 #ifdef CONFIG_PM_SLEEP 589 595 static int mlx90614_pm_suspend(struct device *dev) 590 596 { ··· 650 644 static struct i2c_driver mlx90614_driver = { 651 645 .driver = { 652 646 .name = "mlx90614", 647 + .of_match_table = mlx90614_of_match, 653 648 .pm = &mlx90614_pm_ops, 654 649 }, 655 650 .probe = mlx90614_probe,