From f7f951c29835622d6096530393a8322131059917 Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Tue, 12 Feb 2013 17:41:22 +0000 Subject: of/selftest: Fix GPIOs selftest to cover the 7th case The of_gpio_named_count() self test doesn't hit the out-of-range condition even though it is coded. Fix the bug by increasing the for loop range by one. Reported-by: Andreas Larsson Cc: Rob Herring Signed-off-by: Grant Likely --- drivers/of/selftest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/of') diff --git a/drivers/of/selftest.c b/drivers/of/selftest.c index f24ffd7088d..9f62eb58dbc 100644 --- a/drivers/of/selftest.c +++ b/drivers/of/selftest.c @@ -35,7 +35,7 @@ static void __init of_selftest_parse_phandle_with_args(void) return; } - for (i = 0; i < 7; i++) { + for (i = 0; i < 8; i++) { bool passed = true; rc = of_parse_phandle_with_args(np, "phandle-list", "#phandle-cells", i, &args); -- cgit v1.2.3