ASoC: codecs: wcd938x: handle deferred probe
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Wed, 17 Jan 2024 15:12:06 +0000 (16:12 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 22 Jan 2024 15:31:13 +0000 (15:31 +0000)
WCD938x sound codec driver ignores return status of getting regulators
and returns EINVAL instead of EPROBE_DEFER.  If regulator provider
probes after the codec, system is left without probed audio:

  wcd938x_codec audio-codec: wcd938x_probe: Fail to obtain platform data
  wcd938x_codec: probe of audio-codec failed with error -22

Fixes: 16572522aece ("ASoC: codecs: wcd938x-sdw: add SoundWire driver")
Cc: <stable@vger.kernel.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://msgid.link/r/20240117151208.1219755-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/wcd938x.c

index 98055dd39b782eaff0d337ef34f68f1378c8c1a5..75834ed0365d93a7613052056892cf6c0fe0a239 100644 (file)
@@ -3589,7 +3589,7 @@ static int wcd938x_probe(struct platform_device *pdev)
        ret = wcd938x_populate_dt_data(wcd938x, dev);
        if (ret) {
                dev_err(dev, "%s: Fail to obtain platform data\n", __func__);
-               return -EINVAL;
+               return ret;
        }
 
        ret = wcd938x_add_slave_components(wcd938x, dev, &match);