summaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb/omap2430.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2023-03-10 08:47:27 -0600
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-03-16 12:14:50 +0100
commita3927e1a9f1c3b7d71d9c8215905397e55da4da3 (patch)
tree4b0a77e12d0b38840955570c5d6cb6faca44a840 /drivers/usb/musb/omap2430.c
parenta20bf02aaa6c026e81b2b15d5878c08f683517bb (diff)
downloadlinux-stable-a3927e1a9f1c3b7d71d9c8215905397e55da4da3.tar.gz
linux-stable-a3927e1a9f1c3b7d71d9c8215905397e55da4da3.tar.bz2
linux-stable-a3927e1a9f1c3b7d71d9c8215905397e55da4da3.zip
usb: 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/20230310144728.1545786-1-robh@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/musb/omap2430.c')
-rw-r--r--drivers/usb/musb/omap2430.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c
index 44a21ec865fb..7f305b352591 100644
--- a/drivers/usb/musb/omap2430.c
+++ b/drivers/usb/musb/omap2430.c
@@ -334,7 +334,7 @@ static int omap2430_probe(struct platform_device *pdev)
* Legacy SoCs using omap_device get confused if node is moved
* because of interconnect properties mixed into the node.
*/
- if (of_get_property(np, "ti,hwmods", NULL)) {
+ if (of_property_present(np, "ti,hwmods")) {
dev_warn(&pdev->dev, "please update to probe with ti-sysc\n");
populate_irqs = true;
} else {