Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c736c4e1 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Stephen Boyd
Browse files

clk: remove redundant negative index check in of_clk_get_parent_name()



This if-block can be dropped because the of_parse_phandle_with_args()
in the following line returns -EINVAL for negative index.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 59fe6631
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -3062,9 +3062,6 @@ const char *of_clk_get_parent_name(struct device_node *np, int index)
	int count;
	struct clk *clk;

	if (index < 0)
		return NULL;

	rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
					&clkspec);
	if (rc)