|
@@ -1438,14 +1438,20 @@ static int __exit ftgmac100_remove(struct platform_device *pdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static const struct of_device_id ftgmac100_of_match[] = {
|
|
|
+ { .compatible = "faraday,ftgmac100" },
|
|
|
+ { }
|
|
|
+};
|
|
|
+MODULE_DEVICE_TABLE(of, ftgmac100_of_match);
|
|
|
+
|
|
|
static struct platform_driver ftgmac100_driver = {
|
|
|
- .probe = ftgmac100_probe,
|
|
|
- .remove = __exit_p(ftgmac100_remove),
|
|
|
- .driver = {
|
|
|
- .name = DRV_NAME,
|
|
|
+ .probe = ftgmac100_probe,
|
|
|
+ .remove = __exit_p(ftgmac100_remove),
|
|
|
+ .driver = {
|
|
|
+ .name = DRV_NAME,
|
|
|
+ .of_match_table = ftgmac100_of_match,
|
|
|
},
|
|
|
};
|
|
|
-
|
|
|
module_platform_driver(ftgmac100_driver);
|
|
|
|
|
|
MODULE_AUTHOR("Po-Yu Chuang <ratbert@faraday-tech.com>");
|