|
@@ -3542,6 +3542,15 @@ static const struct i2c_device_id rt5645_i2c_id[] = {
|
|
|
};
|
|
|
MODULE_DEVICE_TABLE(i2c, rt5645_i2c_id);
|
|
|
|
|
|
+#ifdef CONFIG_OF
|
|
|
+static const struct of_device_id rt5645_of_match[] = {
|
|
|
+ { .compatible = "realtek,rt5645", },
|
|
|
+ { .compatible = "realtek,rt5650", },
|
|
|
+ { }
|
|
|
+};
|
|
|
+MODULE_DEVICE_TABLE(of, rt5645_of_match);
|
|
|
+#endif
|
|
|
+
|
|
|
#ifdef CONFIG_ACPI
|
|
|
static const struct acpi_device_id rt5645_acpi_match[] = {
|
|
|
{ "10EC5645", 0 },
|
|
@@ -3901,6 +3910,7 @@ static void rt5645_i2c_shutdown(struct i2c_client *i2c)
|
|
|
static struct i2c_driver rt5645_i2c_driver = {
|
|
|
.driver = {
|
|
|
.name = "rt5645",
|
|
|
+ .of_match_table = of_match_ptr(rt5645_of_match),
|
|
|
.acpi_match_table = ACPI_PTR(rt5645_acpi_match),
|
|
|
},
|
|
|
.probe = rt5645_i2c_probe,
|