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);