Commit 76672e2e authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Russell King
Browse files

ARM: 8776/1: clkdev: Remove duplicated negative index check from __of_clk_get()



__of_clk_get() calls of_parse_phandle_with_args(), which rejects
negative indices since commit bd69f73f ("of: Create function for
counting number of phandles in a property").

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: default avatarStephen Boyd <sboyd@kernel.org>
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
parent ce397d21
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -35,9 +35,6 @@ static struct clk *__of_clk_get(struct device_node *np, int index,
	struct clk *clk;
	int rc;

	if (index < 0)
		return ERR_PTR(-EINVAL);

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