I missed the socketcan-users list when I sent this. Sorry for the noise. Robin
----- Forwarded message from Robin Holt <[email protected]> ----- Date: Thu, 4 Aug 2011 12:57:57 -0500 From: Robin Holt <[email protected]> To: Robin Holt <[email protected]> Cc: Robin Holt <[email protected]> Subject: [RFC 3/3] [flexcan] Add of_match to platform_device definition. It looks like the of_device stuff got moved under the platform_device->driver and all we should need to do is define an of_match to get a flexcan_probe call out. Signed-off-by: Robin Holt <[email protected]> --- drivers/net/can/flexcan.c | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/drivers/net/can/flexcan.c b/drivers/net/can/flexcan.c index 62a20df..6195a24 100644 --- a/drivers/net/can/flexcan.c +++ b/drivers/net/can/flexcan.c @@ -1072,8 +1072,18 @@ static int __devexit flexcan_remove(struct platform_device *pdev) return 0; } +static struct of_device_id flexcan_of_match[] = { + { + .compatible = "fsl,flexcan-v1.0", + }, +}; + 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 ----- End forwarded message ----- _______________________________________________ Socketcan-users mailing list [email protected] https://lists.berlios.de/mailman/listinfo/socketcan-users
