lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Fri, 13 Mar 2015 10:28:00 -0500
From:	Rob Herring <robherring2@...il.com>
To:	Wang Long <long.wanglong@...wei.com>
Cc:	Grant Likely <grant.likely@...aro.org>,
	Rob Herring <robh+dt@...nel.org>,
	"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	peifeiyue@...wei.com
Subject: Re: [PATCH] of/unittest: Fix the wrong expected value in of_selftest_property_string

On Mon, Mar 2, 2015 at 9:50 PM, Wang Long <long.wanglong@...wei.com> wrote:
> This patch fix the wrong expected value of of_property_match_string
> in of_selftest_property_string.
>
> Signed-off-by: Wang Long <long.wanglong@...wei.com>

Applied for 4.0. Thanks.

Rob

> ---
>  drivers/of/unittest.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
> index 199fb23..00ddce7 100644
> --- a/drivers/of/unittest.c
> +++ b/drivers/of/unittest.c
> @@ -378,9 +378,9 @@ static void __init of_selftest_property_string(void)
>         rc = of_property_match_string(np, "phandle-list-names", "first");
>         selftest(rc == 0, "first expected:0 got:%i\n", rc);
>         rc = of_property_match_string(np, "phandle-list-names", "second");
> -       selftest(rc == 1, "second expected:0 got:%i\n", rc);
> +       selftest(rc == 1, "second expected:1 got:%i\n", rc);
>         rc = of_property_match_string(np, "phandle-list-names", "third");
> -       selftest(rc == 2, "third expected:0 got:%i\n", rc);
> +       selftest(rc == 2, "third expected:2 got:%i\n", rc);
>         rc = of_property_match_string(np, "phandle-list-names", "fourth");
>         selftest(rc == -ENODATA, "unmatched string; rc=%i\n", rc);
>         rc = of_property_match_string(np, "missing-property", "blah");
> --
> 1.8.3.4
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists