|
@@ -587,14 +587,23 @@ static int lp5562_remove(struct i2c_client *client)
|
|
|
|
|
|
static const struct i2c_device_id lp5562_id[] = {
|
|
|
{ "lp5562", 0 },
|
|
|
- { "ti,lp5562", 0 }, /* OF compatible */
|
|
|
{ }
|
|
|
};
|
|
|
MODULE_DEVICE_TABLE(i2c, lp5562_id);
|
|
|
|
|
|
+#ifdef CONFIG_OF
|
|
|
+static const struct of_device_id of_lp5562_leds_match[] = {
|
|
|
+ { .compatible = "ti,lp5562", },
|
|
|
+ {},
|
|
|
+};
|
|
|
+
|
|
|
+MODULE_DEVICE_TABLE(of, of_lp5562_leds_match);
|
|
|
+#endif
|
|
|
+
|
|
|
static struct i2c_driver lp5562_driver = {
|
|
|
.driver = {
|
|
|
.name = "lp5562",
|
|
|
+ .of_match_table = of_match_ptr(of_lp5562_leds_match),
|
|
|
},
|
|
|
.probe = lp5562_probe,
|
|
|
.remove = lp5562_remove,
|