diff options
author | Srinivas Kandagatla <srinivas.kandagatla@st.com> | 2014-01-14 09:52:05 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-01-15 07:59:51 -0500 |
commit | c9dd66b73cc443bfe1fcb5d282034aeb998efd32 (patch) | |
tree | ee165a6a2bcae6ba458fd216a86d2f7a5767c817 /drivers/pinctrl/pinctrl-st.c | |
parent | 4dfb0bd76b0efea8b2081daee8262c13f965499b (diff) |
pinctrl: st: Fix a typo in probe
Probe function had commas instead of semi-colons on some of the lines.
This patch just fixes those lines. No functional chagnes done in this
patch.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-st.c')
-rw-r--r-- | drivers/pinctrl/pinctrl-st.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/pinctrl/pinctrl-st.c b/drivers/pinctrl/pinctrl-st.c index 9cadc68ee572..320c27363cc8 100644 --- a/drivers/pinctrl/pinctrl-st.c +++ b/drivers/pinctrl/pinctrl-st.c | |||
@@ -1370,10 +1370,10 @@ static int st_pctl_probe(struct platform_device *pdev) | |||
1370 | if (ret) | 1370 | if (ret) |
1371 | return ret; | 1371 | return ret; |
1372 | 1372 | ||
1373 | pctl_desc->owner = THIS_MODULE, | 1373 | pctl_desc->owner = THIS_MODULE; |
1374 | pctl_desc->pctlops = &st_pctlops, | 1374 | pctl_desc->pctlops = &st_pctlops; |
1375 | pctl_desc->pmxops = &st_pmxops, | 1375 | pctl_desc->pmxops = &st_pmxops; |
1376 | pctl_desc->confops = &st_confops, | 1376 | pctl_desc->confops = &st_confops; |
1377 | pctl_desc->name = dev_name(&pdev->dev); | 1377 | pctl_desc->name = dev_name(&pdev->dev); |
1378 | 1378 | ||
1379 | info->pctl = pinctrl_register(pctl_desc, &pdev->dev, info); | 1379 | info->pctl = pinctrl_register(pctl_desc, &pdev->dev, info); |