* [PATCH] of/selftest: clean-up of_selftest_platform_populate pass/fail handling
@ 2014-05-13 16:18 Rob Herring
2014-05-14 11:10 ` Grant Likely
0 siblings, 1 reply; 2+ messages in thread
From: Rob Herring @ 2014-05-13 16:18 UTC (permalink / raw)
To: linux-kernel, devicetree; +Cc: Grant Likely, Rob Herring
From: Rob Herring <robh@kernel.org>
Move the pass/fail checks into selftest() calls instead of a separate if
condition. Unconditionally calling pass was wrong.
Signed-off-by: Rob Herring <robh@kernel.org>
Cc: Grant Likely <grant.likely@linaro.org>
---
drivers/of/selftest.c | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/drivers/of/selftest.c b/drivers/of/selftest.c
index fe70b86..c1d7d38 100644
--- a/drivers/of/selftest.c
+++ b/drivers/of/selftest.c
@@ -440,22 +440,18 @@ static void __init of_selftest_platform_populate(void)
/* Test that a missing irq domain returns -EPROBE_DEFER */
np = of_find_node_by_path("/testcase-data/testcase-device1");
pdev = of_find_device_by_node(np);
- if (!pdev)
- selftest(0, "device 1 creation failed\n");
+ selftest(pdev, "device 1 creation failed\n");
+
irq = platform_get_irq(pdev, 0);
- if (irq != -EPROBE_DEFER)
- selftest(0, "device deferred probe failed - %d\n", irq);
+ selftest(irq == -EPROBE_DEFER, "device deferred probe failed - %d\n", irq);
/* Test that a parsing failure does not return -EPROBE_DEFER */
np = of_find_node_by_path("/testcase-data/testcase-device2");
pdev = of_find_device_by_node(np);
- if (!pdev)
- selftest(0, "device 2 creation failed\n");
+ selftest(pdev, "device 2 creation failed\n");
irq = platform_get_irq(pdev, 0);
- if (irq >= 0 || irq == -EPROBE_DEFER)
- selftest(0, "device parsing error failed - %d\n", irq);
+ selftest(irq < 0 && irq != -EPROBE_DEFER, "device parsing error failed - %d\n", irq);
- selftest(1, "passed");
}
static int __init of_selftest(void)
--
1.9.1
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] of/selftest: clean-up of_selftest_platform_populate pass/fail handling
2014-05-13 16:18 [PATCH] of/selftest: clean-up of_selftest_platform_populate pass/fail handling Rob Herring
@ 2014-05-14 11:10 ` Grant Likely
0 siblings, 0 replies; 2+ messages in thread
From: Grant Likely @ 2014-05-14 11:10 UTC (permalink / raw)
To: Rob Herring, linux-kernel, devicetree; +Cc: Rob Herring
On Tue, 13 May 2014 11:18:28 -0500, Rob Herring <robherring2@gmail.com> wrote:
> From: Rob Herring <robh@kernel.org>
>
> Move the pass/fail checks into selftest() calls instead of a separate if
> condition. Unconditionally calling pass was wrong.
>
> Signed-off-by: Rob Herring <robh@kernel.org>
> Cc: Grant Likely <grant.likely@linaro.org>
Acked-by: Grant Likely <grant.likely@linaro.org>
> ---
> drivers/of/selftest.c | 14 +++++---------
> 1 file changed, 5 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/of/selftest.c b/drivers/of/selftest.c
> index fe70b86..c1d7d38 100644
> --- a/drivers/of/selftest.c
> +++ b/drivers/of/selftest.c
> @@ -440,22 +440,18 @@ static void __init of_selftest_platform_populate(void)
> /* Test that a missing irq domain returns -EPROBE_DEFER */
> np = of_find_node_by_path("/testcase-data/testcase-device1");
> pdev = of_find_device_by_node(np);
> - if (!pdev)
> - selftest(0, "device 1 creation failed\n");
> + selftest(pdev, "device 1 creation failed\n");
> +
> irq = platform_get_irq(pdev, 0);
> - if (irq != -EPROBE_DEFER)
> - selftest(0, "device deferred probe failed - %d\n", irq);
> + selftest(irq == -EPROBE_DEFER, "device deferred probe failed - %d\n", irq);
>
> /* Test that a parsing failure does not return -EPROBE_DEFER */
> np = of_find_node_by_path("/testcase-data/testcase-device2");
> pdev = of_find_device_by_node(np);
> - if (!pdev)
> - selftest(0, "device 2 creation failed\n");
> + selftest(pdev, "device 2 creation failed\n");
> irq = platform_get_irq(pdev, 0);
> - if (irq >= 0 || irq == -EPROBE_DEFER)
> - selftest(0, "device parsing error failed - %d\n", irq);
> + selftest(irq < 0 && irq != -EPROBE_DEFER, "device parsing error failed - %d\n", irq);
>
> - selftest(1, "passed");
> }
>
> static int __init of_selftest(void)
> --
> 1.9.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-05-14 11:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-13 16:18 [PATCH] of/selftest: clean-up of_selftest_platform_populate pass/fail handling Rob Herring
2014-05-14 11:10 ` Grant Likely
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome