]> Pileus Git - ~andy/linux/commitdiff
pinctrl: st: Fix a typo in probe
authorSrinivas Kandagatla <srinivas.kandagatla@st.com>
Tue, 14 Jan 2014 14:52:05 +0000 (14:52 +0000)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 15 Jan 2014 12:59:51 +0000 (13:59 +0100)
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>
drivers/pinctrl/pinctrl-st.c

index 9cadc68ee5722bec7a541445e2eba257d355e488..320c27363cc87293ed0448cc0054b3b13c884995 100644 (file)
@@ -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);