|
@@ -1027,8 +1027,19 @@ static int __devexit flexcan_remove(struct platform_device *pdev)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static struct of_device_id flexcan_of_match[] = {
|
|
|
|
+ {
|
|
|
|
+ .compatible = "fsl,p1010-flexcan",
|
|
|
|
+ },
|
|
|
|
+ {},
|
|
|
|
+};
|
|
|
|
+
|
|
static struct platform_driver flexcan_driver = {
|
|
static struct platform_driver flexcan_driver = {
|
|
- .driver.name = DRV_NAME,
|
|
|
|
|
|
+ .driver = {
|
|
|
|
+ .name = DRV_NAME,
|
|
|
|
+ .owner = THIS_MODULE,
|
|
|
|
+ .of_match_table = flexcan_of_match,
|
|
|
|
+ },
|
|
.probe = flexcan_probe,
|
|
.probe = flexcan_probe,
|
|
.remove = __devexit_p(flexcan_remove),
|
|
.remove = __devexit_p(flexcan_remove),
|
|
};
|
|
};
|