Steven King
2012-05-06 17:26:28 UTC
Cc: David S. Miller <davem at davemloft.net>
Signed-off-by: Shawn Guo <shawn.guo at linaro.org>
---
drivers/net/ethernet/freescale/fec.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
As the fec driver is also used by m68k/coldfire, perhaps a CC to theSigned-off-by: Shawn Guo <shawn.guo at linaro.org>
---
drivers/net/ethernet/freescale/fec.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
uclinux-dev at uclinux.org would be apropos.
+ pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
+ if (IS_ERR(pinctrl)) {
+ ret = PTR_ERR(pinctrl);
+ goto failed_pin;
+ }
What happens here if pinmux support isnt implemented yet as is the case for+ if (IS_ERR(pinctrl)) {
+ ret = PTR_ERR(pinctrl);
+ goto failed_pin;
+ }
m68k/coldfire?