projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
243abbf
)
flexcan: Add of_match to platform_device definition.
author
[email protected]
<
[email protected]
>
Tue, 16 Aug 2011 17:32:22 +0000
(17:32 +0000)
committer
David S. Miller
<
[email protected]
>
Thu, 18 Aug 2011 03:36:38 +0000
(20:36 -0700)
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 <
[email protected]
>
Acked-by: Marc Kleine-Budde <
[email protected]
>
Acked-by: Wolfgang Grandegger <
[email protected]
>
Cc: U Bhaskar-B22300 <
[email protected]
>
Cc: Grant Likely <
[email protected]
>
Cc:
[email protected]
Cc:
[email protected]
Cc: PPC list <
[email protected]
>
Cc:
[email protected]
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/can/flexcan.c
patch
|
blob
|
history
diff --git
a/drivers/net/can/flexcan.c
b/drivers/net/can/flexcan.c
index 68cbe5243493c69c7a01e3db47c5bfee1dd0ff7e..cc1e0a7b554fee296fa4401c5aaf35855545f6c2 100644
(file)
--- 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),
};