Commit 7fa5047a authored by Rob Herring's avatar Rob Herring

drm: 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.
Reviewed-by: default avatarJernej Skrabec <jernej.skrabec@gmail.com>
Reviewed-by: Liu Ying <victor.liu@nxp.com> # i.MX bridge
Reviewed-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Link: https://lore.kernel.org/r/20230310144705.1542207-1-robh@kernel.orgSigned-off-by: default avatarRob Herring <robh@kernel.org>
parent 981f8866
...@@ -313,7 +313,7 @@ imx8qxp_pixel_link_find_next_bridge(struct imx8qxp_pixel_link *pl) ...@@ -313,7 +313,7 @@ imx8qxp_pixel_link_find_next_bridge(struct imx8qxp_pixel_link *pl)
} }
/* specially select the next bridge with companion PXL2DPI */ /* specially select the next bridge with companion PXL2DPI */
if (of_find_property(remote, "fsl,companion-pxl2dpi", NULL)) if (of_property_present(remote, "fsl,companion-pxl2dpi"))
bridge_sel = ep_cnt; bridge_sel = ep_cnt;
ep_cnt++; ep_cnt++;
......
...@@ -329,7 +329,7 @@ int mipi_dsi_host_register(struct mipi_dsi_host *host) ...@@ -329,7 +329,7 @@ int mipi_dsi_host_register(struct mipi_dsi_host *host)
for_each_available_child_of_node(host->dev->of_node, node) { for_each_available_child_of_node(host->dev->of_node, node) {
/* skip nodes without reg property */ /* skip nodes without reg property */
if (!of_find_property(node, "reg", NULL)) if (!of_property_present(node, "reg"))
continue; continue;
of_mipi_dsi_device_add(host, node); of_mipi_dsi_device_add(host, node);
} }
......
...@@ -964,7 +964,7 @@ static void adreno_get_pwrlevels(struct device *dev, ...@@ -964,7 +964,7 @@ static void adreno_get_pwrlevels(struct device *dev,
gpu->fast_rate = 0; gpu->fast_rate = 0;
/* You down with OPP? */ /* You down with OPP? */
if (!of_find_property(dev->of_node, "operating-points-v2", NULL)) if (!of_property_present(dev->of_node, "operating-points-v2"))
ret = adreno_get_legacy_pwrlevels(dev); ret = adreno_get_legacy_pwrlevels(dev);
else { else {
ret = devm_pm_opp_of_add_table(dev); ret = devm_pm_opp_of_add_table(dev);
......
...@@ -792,7 +792,7 @@ static int sun4i_backend_bind(struct device *dev, struct device *master, ...@@ -792,7 +792,7 @@ static int sun4i_backend_bind(struct device *dev, struct device *master,
dev_set_drvdata(dev, backend); dev_set_drvdata(dev, backend);
spin_lock_init(&backend->frontend_lock); spin_lock_init(&backend->frontend_lock);
if (of_find_property(dev->of_node, "interconnects", NULL)) { if (of_property_present(dev->of_node, "interconnects")) {
/* /*
* This assume we have the same DMA constraints for all our the * This assume we have the same DMA constraints for all our the
* devices in our pipeline (all the backends, but also the * devices in our pipeline (all the backends, but also the
......
...@@ -391,7 +391,7 @@ static int sun8i_mixer_bind(struct device *dev, struct device *master, ...@@ -391,7 +391,7 @@ static int sun8i_mixer_bind(struct device *dev, struct device *master,
mixer->engine.ops = &sun8i_engine_ops; mixer->engine.ops = &sun8i_engine_ops;
mixer->engine.node = dev->of_node; mixer->engine.node = dev->of_node;
if (of_find_property(dev->of_node, "iommus", NULL)) { if (of_property_present(dev->of_node, "iommus")) {
/* /*
* This assume we have the same DMA constraints for * This assume we have the same DMA constraints for
* all our the mixers in our pipeline. This sounds * all our the mixers in our pipeline. This sounds
......
...@@ -204,7 +204,7 @@ simplefb_get_memory_of(struct drm_device *dev, struct device_node *of_node) ...@@ -204,7 +204,7 @@ simplefb_get_memory_of(struct drm_device *dev, struct device_node *of_node)
if (err) if (err)
return ERR_PTR(err); return ERR_PTR(err);
if (of_get_property(of_node, "reg", NULL)) if (of_property_present(of_node, "reg"))
drm_warn(dev, "preferring \"memory-region\" over \"reg\" property\n"); drm_warn(dev, "preferring \"memory-region\" over \"reg\" property\n");
return res; return res;
......
...@@ -3020,7 +3020,7 @@ static int vc4_hdmi_cec_init(struct vc4_hdmi *vc4_hdmi) ...@@ -3020,7 +3020,7 @@ static int vc4_hdmi_cec_init(struct vc4_hdmi *vc4_hdmi)
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
int ret; int ret;
if (!of_find_property(dev->of_node, "interrupts", NULL)) { if (!of_property_present(dev->of_node, "interrupts")) {
dev_warn(dev, "'interrupts' DT property is missing, no CEC\n"); dev_warn(dev, "'interrupts' DT property is missing, no CEC\n");
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment