]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
of/selftest: Fix GPIOs selftest to cover the 7th case
authorGrant Likely <grant.likely@secretlab.ca>
Tue, 12 Feb 2013 17:41:22 +0000 (17:41 +0000)
committerGrant Likely <grant.likely@secretlab.ca>
Wed, 13 Feb 2013 10:05:57 +0000 (10:05 +0000)
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 <andreas@gaisler.com>
Cc: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
drivers/of/selftest.c

index f24ffd7088d20c590c14da6082c6354ff433bce4..9f62eb58dbc7e2b70b66c697116e1413812d20af 100644 (file)
@@ -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);