Skip to content

Commit 171eb6f

Browse files
xdarklightbroonie
authored andcommitted
ASoC: meson: meson-card-utils: use of_property_present() for DT parsing
Commit c141ecc ("of: Warn when of_property_read_bool() is used on non-boolean properties") added a warning when trying to parse a property with a value (boolean properties are defined as: absent = false, present without any value = true). This causes a warning from meson-card-utils. meson-card-utils needs to know about the existence of the "audio-routing" and/or "audio-widgets" properties in order to properly parse them. Switch to of_property_present() in order to silence the following warning messages during boot: OF: /sound: Read of boolean property 'audio-routing' with a value. OF: /sound: Read of boolean property 'audio-widgets' with a value. Fixes: 7864a79 ("ASoC: meson: add axg sound card support") Tested-by: Christian Hewitt <christianshewitt@gmail.com> Cc: stable@vger.kernel.org Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Link: https://patch.msgid.link/20250419213448.59647-1-martin.blumenstingl@googlemail.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 402dda2 commit 171eb6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sound/soc/meson/meson-card-utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ static int meson_card_parse_of_optional(struct snd_soc_card *card,
231231
const char *p))
232232
{
233233
/* If property is not provided, don't fail ... */
234-
if (!of_property_read_bool(card->dev->of_node, propname))
234+
if (!of_property_present(card->dev->of_node, propname))
235235
return 0;
236236

237237
/* ... but do fail if it is provided and the parsing fails */

0 commit comments

Comments
 (0)