Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5654d900 authored by Fabio Estevam's avatar Fabio Estevam Committed by Ulf Hansson
Browse files

mmc: mxs-mmc: Propagate the real error



If platform_get_irq() fails, it is better to propagate the real error value
instead of a 'fake' one.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent c3cd5c07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -583,7 +583,7 @@ static int mxs_mmc_probe(struct platform_device *pdev)

	irq_err = platform_get_irq(pdev, 0);
	if (irq_err < 0)
		return -EINVAL;
		return irq_err;

	mmc = mmc_alloc_host(sizeof(struct mxs_mmc_host), &pdev->dev);
	if (!mmc)