Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c9dd66b7 authored by Srinivas Kandagatla's avatar Srinivas Kandagatla Committed by Linus Walleij
Browse files

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: default avatarSrinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 4dfb0bd7
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -1370,10 +1370,10 @@ static int st_pctl_probe(struct platform_device *pdev)
	if (ret)
	if (ret)
		return ret;
		return ret;


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


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