]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
clk: sunxi: fix handling return value of of_property_match_string
authorAndrzej Hajda <a.hajda@samsung.com>
Mon, 14 Dec 2015 10:06:00 +0000 (11:06 +0100)
committerMaxime Ripard <maxime.ripard@free-electrons.com>
Mon, 14 Dec 2015 12:54:11 +0000 (13:54 +0100)
The function can return negative values, so its result should
be assigned to signed variable.

The problem has been detected using proposed semantic patch
scripts/coccinelle/tests/assign_signed_to_unsigned.cocci [1].

[1]: http://permalink.gmane.org/gmane.linux.kernel/2046107

Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
drivers/clk/sunxi/clk-sun8i-bus-gates.c

index b8c775324a5c929c93de9d1bf85cda2fd3fdcb5a..e32d18ba252be91ad308c66f10828a5ff7adcf36 100644 (file)
@@ -47,12 +47,12 @@ static void __init sun8i_h3_bus_gates_init(struct device_node *node)
                return;
 
        for (i = 0; i < ARRAY_SIZE(names); i++) {
-               index = of_property_match_string(node, "clock-names",
-                                                names[i]);
-               if (index < 0)
+               int idx = of_property_match_string(node, "clock-names",
+                                                  names[i]);
+               if (idx < 0)
                        return;
 
-               parents[i] = of_clk_get_parent_name(node, index);
+               parents[i] = of_clk_get_parent_name(node, idx);
        }
 
        clk_data = kmalloc(sizeof(struct clk_onecell_data), GFP_KERNEL);