Fix warnings are errors caused by commit 
a42c7d95d29e
("pinctrl: tegra: Use correct offset for pin group").
Signed-off-by: Prathamesh Shete <pshete@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
                                        unsigned int offset)
 {
        struct tegra_pmx *pmx = pinctrl_dev_get_drvdata(pctldev);
-       struct tegra_pingroup *g;
        unsigned int group, num_pins, j;
        const unsigned int *pins;
        int ret;
                        continue;
                for (j = 0; j < num_pins; j++) {
                        if (offset == pins[j])
-                               return &pmx->soc->groups[group];
+                               return (struct tegra_pingroup *)&pmx->soc->groups[group];
                }
        }
 
        group = tegra_pinctrl_get_group(pctldev, offset);
 
        if (!group)
-               return -EINVAL;
+               return;
 
        if (group->mux_reg < 0 || group->sfsel_bit < 0)
                return;