|
@@ -323,9 +323,16 @@ static const struct platform_device_id mt6397_platform_ids[] = {
|
|
|
};
|
|
|
MODULE_DEVICE_TABLE(platform, mt6397_platform_ids);
|
|
|
|
|
|
+static const struct of_device_id mt6397_of_match[] = {
|
|
|
+ { .compatible = "mediatek,mt6397-regulator", },
|
|
|
+ { /* sentinel */ },
|
|
|
+};
|
|
|
+MODULE_DEVICE_TABLE(of, mt6397_of_match);
|
|
|
+
|
|
|
static struct platform_driver mt6397_regulator_driver = {
|
|
|
.driver = {
|
|
|
.name = "mt6397-regulator",
|
|
|
+ .of_match_table = of_match_ptr(mt6397_of_match),
|
|
|
},
|
|
|
.probe = mt6397_regulator_probe,
|
|
|
.id_table = mt6397_platform_ids,
|