Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 328039
b: refs/heads/master
c: 006cd13
h: refs/heads/master
i:
  328037: 2c24331
  328035: b038b2a
  328031: 8a73c0f
v: v3
  • Loading branch information
AnilKumar Ch authored and Marc Kleine-Budde committed Sep 21, 2012
1 parent b38c688 commit 99da5a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8212003260c600b9b55a79634fb29d0f7ec813d9
refs/heads/master: 006cd138fc8813220cb4b6450bd9b44f3401bb89
7 changes: 7 additions & 0 deletions trunk/drivers/net/can/c_can/c_can_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <linux/clk.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/pinctrl/consumer.h>

#include <linux/can/dev.h>

Expand Down Expand Up @@ -97,6 +98,7 @@ static int __devinit c_can_plat_probe(struct platform_device *pdev)
struct c_can_priv *priv;
const struct of_device_id *match;
const struct platform_device_id *id;
struct pinctrl *pinctrl;
struct resource *mem;
int irq;
struct clk *clk;
Expand All @@ -113,6 +115,11 @@ static int __devinit c_can_plat_probe(struct platform_device *pdev)
id = platform_get_device_id(pdev);
}

pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
if (IS_ERR(pinctrl))
dev_warn(&pdev->dev,
"failed to configure pins from driver\n");

/* get the appropriate clk */
clk = clk_get(&pdev->dev, NULL);
if (IS_ERR(clk)) {
Expand Down

0 comments on commit 99da5a7

Please sign in to comment.