mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 19:20:55 +07:00
ASoC: qcom: storm: remove special casing EPROBE_DEFER
This patch removes special casing the EPROBE_DEFER error handling in the driver. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
21e904bcf9
commit
2682c7c72e
@ -122,15 +122,12 @@ static int storm_platform_probe(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
ret = devm_snd_soc_register_card(&pdev->dev, card);
|
ret = devm_snd_soc_register_card(&pdev->dev, card);
|
||||||
if (ret == -EPROBE_DEFER) {
|
if (ret)
|
||||||
return ret;
|
|
||||||
} else if (ret) {
|
|
||||||
dev_err(&pdev->dev, "%s() error registering soundcard: %d\n",
|
dev_err(&pdev->dev, "%s() error registering soundcard: %d\n",
|
||||||
__func__, ret);
|
__func__, ret);
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return ret;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_OF
|
#ifdef CONFIG_OF
|
||||||
|
Loading…
Reference in New Issue
Block a user