From: holt@sgi.com Date: Tue, 16 Aug 2011 17:32:22 +0000 (+0000) Subject: flexcan: Add of_match to platform_device definition. X-Git-Tag: next-20110819~44^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c8aef4cb788b760331e6df06a5d93389824882b4;p=karo-tx-linux.git flexcan: Add of_match to platform_device definition. 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 Acked-by: Marc Kleine-Budde Acked-by: Wolfgang Grandegger Cc: U Bhaskar-B22300 Cc: Grant Likely Cc: socketcan-core@lists.berlios.de Cc: netdev@vger.kernel.org Cc: PPC list Cc: devicetree-discuss@lists.ozlabs.org Signed-off-by: David S. Miller --- diff --git a/drivers/net/can/flexcan.c b/drivers/net/can/flexcan.c index 68cbe5243493..cc1e0a7b554f 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,p1010-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), };