"goto eprobe" does nothing.  Return directly.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
        if (IS_ERR(priv->clk)) {
                ret = PTR_ERR(priv->clk);
                dev_err(&pdev->dev, "cannot get clock: %d\n", ret);
-               goto eprobe;
+               return ret;
        }
 
        /*
        }
 
        host = tmio_mmc_host_alloc(pdev);
-       if (!host) {
-               ret = -ENOMEM;
-               goto eprobe;
-       }
+       if (!host)
+               return -ENOMEM;
 
        if (of_data) {
                mmc_data->flags |= of_data->tmio_flags;
        tmio_mmc_host_remove(host);
 efree:
        tmio_mmc_host_free(host);
-eprobe:
+
        return ret;
 }
 EXPORT_SYMBOL_GPL(renesas_sdhi_probe);