Browse Source

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>
Srinivas Kandagatla 10 năm trước cách đây
mục cha
commit
2682c7c72e
1 tập tin đã thay đổi với 3 bổ sung6 xóa
  1. 3 6
      sound/soc/qcom/storm.c

+ 3 - 6
sound/soc/qcom/storm.c

@@ -122,15 +122,12 @@ static int storm_platform_probe(struct platform_device *pdev)
 	}
 
 	ret = devm_snd_soc_register_card(&pdev->dev, card);
-	if (ret == -EPROBE_DEFER) {
-		return ret;
-	} else if (ret) {
+	if (ret)
 		dev_err(&pdev->dev, "%s() error registering soundcard: %d\n",
 				__func__, ret);
-		return ret;
-	}
 
-	return 0;
+	return ret;
+
 }
 
 #ifdef CONFIG_OF