summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-11-25 01:24:38 +0900
committerUlf Hansson <ulf.hansson@linaro.org>2017-12-18 13:56:56 +0100
commit4ce6281791676c134d3ae919edaf76da3cef1d76 (patch)
treec211f98c9e373c8809a59854cbd2f3a387e91504 /drivers/mmc/host
parente578afab6e5f57e7ed22a42d261942b4ac923ffd (diff)
downloadlinux-4ce6281791676c134d3ae919edaf76da3cef1d76.tar.bz2
mmc: renesas_sdhi: remove eprobe jump label
"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>
Diffstat (limited to 'drivers/mmc/host')
-rw-r--r--drivers/mmc/host/renesas_sdhi_core.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c
index fcf7235d5742..0590ae06cd7b 100644
--- a/drivers/mmc/host/renesas_sdhi_core.c
+++ b/drivers/mmc/host/renesas_sdhi_core.c
@@ -497,7 +497,7 @@ int renesas_sdhi_probe(struct platform_device *pdev,
if (IS_ERR(priv->clk)) {
ret = PTR_ERR(priv->clk);
dev_err(&pdev->dev, "cannot get clock: %d\n", ret);
- goto eprobe;
+ return ret;
}
/*
@@ -524,10 +524,8 @@ int renesas_sdhi_probe(struct platform_device *pdev,
}
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;
@@ -652,7 +650,7 @@ eirq:
tmio_mmc_host_remove(host);
efree:
tmio_mmc_host_free(host);
-eprobe:
+
return ret;
}
EXPORT_SYMBOL_GPL(renesas_sdhi_probe);