In fotg210_udc_probe(), if devm_clk_get() or clk_prepare_enable()
fails, 'fotg210' will not be freed, which will lead to a memory leak.
Fix it by moving kfree() to a proper location.
In addition,we can use "return -ENOMEM" instead of "goto err"
to simplify the code.
Fixes: 718a38d092ec ("fotg210-udc: Handle PCLK")
Reviewed-by: Andrzej Pietrasiewicz <andrzej.p@collabora.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Yi Yang <yiyang13@huawei.com>
Link: https://lore.kernel.org/r/20221202012126.246953-1-yiyang13@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
                return -ENODEV;
        }
 
-       ret = -ENOMEM;
-
        /* initialize udc */
        fotg210 = kzalloc(sizeof(struct fotg210_udc), GFP_KERNEL);
        if (fotg210 == NULL)
-               goto err;
+               return -ENOMEM;
 
        fotg210->dev = dev;
 
                ret = clk_prepare_enable(fotg210->pclk);
                if (ret) {
                        dev_err(dev, "failed to enable PCLK\n");
-                       return ret;
+                       goto err;
                }
        } else if (PTR_ERR(fotg210->pclk) == -EPROBE_DEFER) {
                /*
        if (!IS_ERR(fotg210->pclk))
                clk_disable_unprepare(fotg210->pclk);
 
-       kfree(fotg210);
-
 err:
+       kfree(fotg210);
        return ret;
 }