summaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2023-03-10 08:47:31 -0600
committerMark Brown <broonie@kernel.org>2023-03-11 12:18:54 +0000
commit1e108e60a44a924e3666fa2a10b53f6c31522856 (patch)
tree6dc8938b5b7f0f678ea0a9ba0974341b45eceb5c /sound/soc/tegra
parent75034eb5e4c267d4ab93085b5d6fa3dab2535b34 (diff)
downloadlinux-1e108e60a44a924e3666fa2a10b53f6c31522856.tar.gz
linux-1e108e60a44a924e3666fa2a10b53f6c31522856.tar.bz2
linux-1e108e60a44a924e3666fa2a10b53f6c31522856.zip
ASoC: Use of_property_present() for testing DT property presence
It is preferred to use typed property access functions (i.e. of_property_read_<type> functions) rather than low-level of_get_property/of_find_property functions for reading properties. As part of this, convert of_get_property/of_find_property calls to the recently added of_property_present() helper when we just want to test for presence of a property and nothing more. Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20230310144732.1546328-1-robh@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/tegra')
-rw-r--r--sound/soc/tegra/tegra_asoc_machine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/tegra/tegra_asoc_machine.c b/sound/soc/tegra/tegra_asoc_machine.c
index 78faa8bcae27..2dc1f44c5a8b 100644
--- a/sound/soc/tegra/tegra_asoc_machine.c
+++ b/sound/soc/tegra/tegra_asoc_machine.c
@@ -502,7 +502,7 @@ int tegra_asoc_machine_probe(struct platform_device *pdev)
* If clock parents are not set in DT, configure here to use clk_out_1
* as mclk and extern1 as parent for Tegra30 and higher.
*/
- if (!of_find_property(dev->of_node, "assigned-clock-parents", NULL) &&
+ if (!of_property_present(dev->of_node, "assigned-clock-parents") &&
!of_machine_is_compatible("nvidia,tegra20")) {
struct clk *clk_out_1, *clk_extern1;