@@ -360,6 +360,13 @@ static const struct i2c_device_id dw9719_id_table[] = {
};
MODULE_DEVICE_TABLE(i2c, dw9719_id_table);
+static const struct of_device_id dw9719_of_table[] = {
+ { .compatible = "dongwoon,dw9719" },
+ { .compatible = "dongwoon,dw9761" },
+ { }
+};
+MODULE_DEVICE_TABLE(of, dw9719_of_table);
+
static DEFINE_RUNTIME_DEV_PM_OPS(dw9719_pm_ops, dw9719_suspend, dw9719_resume,
NULL);
@@ -367,6 +374,7 @@ static struct i2c_driver dw9719_i2c_driver = {
.driver = {
.name = "dw9719",
.pm = pm_sleep_ptr(&dw9719_pm_ops),
+ .of_match_table = of_match_ptr(dw9719_of_table),
},
.probe = dw9719_probe,
.remove = dw9719_remove,