@@ -591,6 +591,16 @@ static int am35x_resume(struct device *dev)
}
#endif
+#ifdef CONFIG_OF
+static const struct of_device_id am35xx_id_table[] = {
+ {
+ .compatible = "ti,am35xx-musb"
+ },
+ {},
+};
+MODULE_DEVICE_TABLE(of, am35xx_id_table);
+#endif
+
static SIMPLE_DEV_PM_OPS(am35x_pm_ops, am35x_suspend, am35x_resume);
static struct platform_driver am35x_driver = {
@@ -599,6 +609,7 @@ static struct platform_driver am35x_driver = {
.driver = {
.name = "musb-am35x",
.pm = &am35x_pm_ops,
+ .of_match_table = of_match_ptr(am35xx_id_table),
},
};
The AM35x glue doesn't yet support device tree, so this patch adds the basics hooks so it doesn't haven't use pdata-quirks.c Signed-off-by: Adam Ford <aford173@gmail.com>