ASoC: samsung: odroid: parse audio-routing
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Thu, 10 Aug 2023 06:32:58 +0000 (08:32 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 16 Aug 2023 13:47:19 +0000 (14:47 +0100)
Parse generic sound card "audio-routing" property and fallback to
"samsung,audio-routing" if it is missing.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20230810063300.20151-10-krzysztof.kozlowski@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/samsung/odroid.c

index 1743bd5..c93cb5a 100644 (file)
@@ -230,12 +230,13 @@ static int odroid_audio_probe(struct platform_device *pdev)
                        return ret;
        }
 
-       if (of_property_present(dev->of_node, "samsung,audio-routing")) {
-               ret = snd_soc_of_parse_audio_routing(card,
-                                               "samsung,audio-routing");
-               if (ret < 0)
-                       return ret;
-       }
+       ret = 0;
+       if (of_property_present(dev->of_node, "audio-routing"))
+               ret = snd_soc_of_parse_audio_routing(card, "audio-routing");
+       else if (of_property_present(dev->of_node, "samsung,audio-routing"))
+               ret = snd_soc_of_parse_audio_routing(card, "samsung,audio-routing");
+       if (ret < 0)
+               return ret;
 
        card->dai_link = odroid_card_dais;
        card->num_links = ARRAY_SIZE(odroid_card_dais);