[PATCH 3/4] [flexcan] Add of_match to platform_device definition.

Robin Holt holt at sgi.com
Tue Aug 9 22:28:26 EST 2011


On powerpc, the OpenFirmware devices are not matched without specifying
an of_match array.  Introduce that array as that is used for matching
on the Freescale P1010 processor.

Signed-off-by: Robin Holt <holt at sgi.com>
To: Marc Kleine-Budde <mkl at pengutronix.de>
To: Wolfgang Grandegger <wg at grandegger.com>
To: U Bhaskar-B22300 <B22300 at freescale.com>
Cc: socketcan-core at lists.berlios.de
Cc: netdev at vger.kernel.org
Cc: PPC list <linuxppc-dev at lists.ozlabs.org>
---
 drivers/net/can/flexcan.c |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/drivers/net/can/flexcan.c b/drivers/net/can/flexcan.c
index 68cbe52..662f832 100644
--- a/drivers/net/can/flexcan.c
+++ b/drivers/net/can/flexcan.c
@@ -1027,8 +1027,19 @@ static int __devexit flexcan_remove(struct platform_device *pdev)
 	return 0;
 }
 
+static struct of_device_id flexcan_of_match[] = {
+	{
+		.compatible = "fsl,flexcan",
+	},
+	{},
+};
+
 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,
 	.remove = __devexit_p(flexcan_remove),
 };
-- 
1.7.2.1



More information about the Linuxppc-dev mailing list