Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

holt@sgi.com and committed by
David S. Miller
c8aef4cb 243abbf2

+12 -1
+12 -1
drivers/net/can/flexcan.c
··· 1027 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 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 1043 .probe = flexcan_probe, 1033 1044 .remove = __devexit_p(flexcan_remove), 1034 1045 };