* [PATCH] ASoC: soc-core: Use of_property_present() for non-boolean properties
@ 2025-02-05 12:01 Fabio Estevam
2025-02-05 12:45 ` Mark Brown
0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2025-02-05 12:01 UTC (permalink / raw)
To: broonie; +Cc: robh, lgirdwood, perex, tiwai, linux-sound, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
The use of of_property_read_bool() for non-boolean properties is
deprecated in favor of of_property_present() when testing for property
presence.
Switch to of_property_present() to fix the following warnings observed
when booting the imx8mp-evk board:
[ 11.436855] OF: /sound-bt-sco/simple-audio-card,cpu: Read of boolean property 'dai-tdm-slot-num' with a value.
[ 11.436885] OF: /sound-bt-sco/simple-audio-card,cpu: Read of boolean property 'dai-tdm-slot-width' with a value.
[ 11.436941] OF: /sound-bt-sco: Read of boolean property 'simple-audio-card,bitclock-master' with a value.
[ 11.436960] OF: /sound-bt-sco: Read of boolean property 'simple-audio-card,frame-master' with a value.
Based on Rob Herring's patch for mmc.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
sound/soc/soc-core.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 3c6d8aef4130..2c529210a8e0 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -3120,7 +3120,7 @@ int snd_soc_of_parse_tdm_slot(struct device_node *np,
if (rx_mask)
snd_soc_of_get_slot_mask(np, "dai-tdm-slot-rx-mask", rx_mask);
- if (of_property_read_bool(np, "dai-tdm-slot-num")) {
+ if (of_property_present(np, "dai-tdm-slot-num")) {
ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
if (ret)
return ret;
@@ -3129,7 +3129,7 @@ int snd_soc_of_parse_tdm_slot(struct device_node *np,
*slots = val;
}
- if (of_property_read_bool(np, "dai-tdm-slot-width")) {
+ if (of_property_present(np, "dai-tdm-slot-width")) {
ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
if (ret)
return ret;
@@ -3403,12 +3403,12 @@ unsigned int snd_soc_daifmt_parse_clock_provider_raw(struct device_node *np,
* check "[prefix]frame-master"
*/
snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
- bit = of_property_read_bool(np, prop);
+ bit = of_property_present(np, prop);
if (bit && bitclkmaster)
*bitclkmaster = of_parse_phandle(np, prop, 0);
snprintf(prop, sizeof(prop), "%sframe-master", prefix);
- frame = of_property_read_bool(np, prop);
+ frame = of_property_present(np, prop);
if (frame && framemaster)
*framemaster = of_parse_phandle(np, prop, 0);
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] ASoC: soc-core: Use of_property_present() for non-boolean properties
2025-02-05 12:01 [PATCH] ASoC: soc-core: Use of_property_present() for non-boolean properties Fabio Estevam
@ 2025-02-05 12:45 ` Mark Brown
2025-02-05 12:50 ` Fabio Estevam
0 siblings, 1 reply; 4+ messages in thread
From: Mark Brown @ 2025-02-05 12:45 UTC (permalink / raw)
To: Fabio Estevam; +Cc: robh, lgirdwood, perex, tiwai, linux-sound, Fabio Estevam
[-- Attachment #1: Type: text/plain, Size: 334 bytes --]
On Wed, Feb 05, 2025 at 09:01:28AM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> The use of of_property_read_bool() for non-boolean properties is
> deprecated in favor of of_property_present() when testing for property
> presence.
This doesn't apply against current code, please check and resend.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ASoC: soc-core: Use of_property_present() for non-boolean properties
2025-02-05 12:45 ` Mark Brown
@ 2025-02-05 12:50 ` Fabio Estevam
2025-02-05 12:52 ` Fabio Estevam
0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2025-02-05 12:50 UTC (permalink / raw)
To: Mark Brown; +Cc: robh, lgirdwood, perex, tiwai, linux-sound, Fabio Estevam
On Wed, Feb 5, 2025 at 9:45 AM Mark Brown <broonie@kernel.org> wrote:
> This doesn't apply against current code, please check and resend.
I used today's linux-next. Which tree would you like me to use?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ASoC: soc-core: Use of_property_present() for non-boolean properties
2025-02-05 12:50 ` Fabio Estevam
@ 2025-02-05 12:52 ` Fabio Estevam
0 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2025-02-05 12:52 UTC (permalink / raw)
To: Mark Brown; +Cc: robh, lgirdwood, perex, tiwai, linux-sound, Fabio Estevam
On Wed, Feb 5, 2025 at 9:50 AM Fabio Estevam <festevam@gmail.com> wrote:
>
> On Wed, Feb 5, 2025 at 9:45 AM Mark Brown <broonie@kernel.org> wrote:
>
> > This doesn't apply against current code, please check and resend.
>
> I used today's linux-next. Which tree would you like me to use?
Ah, just realized that Geert has submitted a fix that landed in your
for-next tree:
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git/commit/?id=6eab7034579917f207ca6d8e3f4e11e85e0ab7d5
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-02-05 12:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-05 12:01 [PATCH] ASoC: soc-core: Use of_property_present() for non-boolean properties Fabio Estevam
2025-02-05 12:45 ` Mark Brown
2025-02-05 12:50 ` Fabio Estevam
2025-02-05 12:52 ` Fabio Estevam
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox