diff options
author | holt@sgi.com <holt@sgi.com> | 2011-08-16 13:32:22 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-08-17 23:36:38 -0400 |
commit | c8aef4cb788b760331e6df06a5d93389824882b4 (patch) | |
tree | c37077d02bf411b6551b03d39bf475f98c438ab3 /drivers/net/can | |
parent | 243abbf2a610d801904bf1e44917e9ac4ccf823e (diff) |
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 <holt@sgi.com>
Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>
Acked-by: Wolfgang Grandegger <wg@grandegger.com>
Cc: U Bhaskar-B22300 <B22300@freescale.com>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: socketcan-core@lists.berlios.de
Cc: netdev@vger.kernel.org
Cc: PPC list <linuxppc-dev@lists.ozlabs.org>
Cc: devicetree-discuss@lists.ozlabs.org
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can')
-rw-r--r-- | 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 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) | |||
1027 | return 0; | 1027 | return 0; |
1028 | } | 1028 | } |
1029 | 1029 | ||
1030 | static struct of_device_id flexcan_of_match[] = { | ||
1031 | { | ||
1032 | .compatible = "fsl,p1010-flexcan", | ||
1033 | }, | ||
1034 | {}, | ||
1035 | }; | ||
1036 | |||
1030 | static struct platform_driver flexcan_driver = { | 1037 | static struct platform_driver flexcan_driver = { |
1031 | .driver.name = DRV_NAME, | 1038 | .driver = { |
1039 | .name = DRV_NAME, | ||
1040 | .owner = THIS_MODULE, | ||
1041 | .of_match_table = flexcan_of_match, | ||
1042 | }, | ||
1032 | .probe = flexcan_probe, | 1043 | .probe = flexcan_probe, |
1033 | .remove = __devexit_p(flexcan_remove), | 1044 | .remove = __devexit_p(flexcan_remove), |
1034 | }; | 1045 | }; |