[3/3] mmc: sunlpus: Slightly simplify the error ahndling path in spmmc_drv_probe()
Commit Message
If mmc_alloc_host() fails, we can return directly.
This saves some LoC, a test and some indentation in the error handling
path.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
drivers/mmc/host/sunplus-mmc.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
@@ -864,10 +864,8 @@ static int spmmc_drv_probe(struct platform_device *pdev)
int ret = 0;
mmc = mmc_alloc_host(sizeof(*host), &pdev->dev);
- if (!mmc) {
- ret = -ENOMEM;
- goto probe_free_host;
- }
+ if (!mmc)
+ return -ENOMEM;
host = mmc_priv(mmc);
host->mmc = mmc;
@@ -936,8 +934,7 @@ static int spmmc_drv_probe(struct platform_device *pdev)
return ret;
probe_free_host:
- if (mmc)
- mmc_free_host(mmc);
+ mmc_free_host(mmc);
return ret;
}