]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
clk: sunxi-ng: Use of_property_present() for non-boolean properties
authorRob Herring (Arm) <robh@kernel.org>
Mon, 4 Nov 2024 19:04:55 +0000 (13:04 -0600)
committerChen-Yu Tsai <wens@csie.org>
Tue, 5 Nov 2024 15:40:49 +0000 (23:40 +0800)
The use of of_property_read_bool() for non-boolean properties is
deprecated in favor of of_property_present() when testing for property
presence.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Link: https://patch.msgid.link/20241104190455.272527-1-robh@kernel.org
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
drivers/clk/sunxi-ng/ccu-sun6i-rtc.c

index 87e23d16ed0f37afb43b580d5770b892c5e6a279..724b202863a81e9c208e6aa9d4fc97fc1064ec54 100644 (file)
@@ -356,7 +356,7 @@ int sun6i_rtc_ccu_probe(struct device *dev, void __iomem *reg)
                const char *fw_name;
 
                /* ext-osc32k was the only input clock in the old binding. */
-               fw_name = of_property_read_bool(dev->of_node, "clock-names")
+               fw_name = of_property_present(dev->of_node, "clock-names")
                        ? "ext-osc32k" : NULL;
                ext_osc32k_clk = devm_clk_get_optional(dev, fw_name);
                if (IS_ERR(ext_osc32k_clk))