Skip to content

Commit

Permalink
pinctrl: st: Fix a typo in probe
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Srinivas Kandagatla authored and Linus Walleij committed Jan 15, 2014
1 parent 4dfb0bd commit c9dd66b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/pinctrl/pinctrl-st.c
Original file line number Diff line number Diff line change
Expand Up @@ -1370,10 +1370,10 @@ static int st_pctl_probe(struct platform_device *pdev)
if (ret)
return ret;

pctl_desc->owner = THIS_MODULE,
pctl_desc->pctlops = &st_pctlops,
pctl_desc->pmxops = &st_pmxops,
pctl_desc->confops = &st_confops,
pctl_desc->owner = THIS_MODULE;
pctl_desc->pctlops = &st_pctlops;
pctl_desc->pmxops = &st_pmxops;
pctl_desc->confops = &st_confops;
pctl_desc->name = dev_name(&pdev->dev);

info->pctl = pinctrl_register(pctl_desc, &pdev->dev, info);
Expand Down

0 comments on commit c9dd66b

Please sign in to comment.