summaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2018-03-07 09:18:08 +0300
committerRob Herring <robh@kernel.org>2018-03-07 20:12:05 -0600
commitbdb7013df910681f84eff27b07791d4c160cb76f (patch)
treeddf391c2c0479dd0bd41f115ccacc1e939a360d2 /drivers/of
parent0b3ce78e90fc66c50a944320d6e39fa6fdb46cdf (diff)
downloadop-kernel-dev-bdb7013df910681f84eff27b07791d4c160cb76f.zip
op-kernel-dev-bdb7013df910681f84eff27b07791d4c160cb76f.tar.gz
of: unittest: fix an error test in of_unittest_overlay_8()
We changed this from of_overlay_apply() to overlay_data_apply(). The overlay_data_apply() function returns 1 on success and 0 on error so the check for less than zero needs to be updated. Fixes: 39a751a4cb7e ("of: change overlay apply input data from unflattened to FDT") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Frank Rowand <frowand.list@gmail.com> Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/unittest.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 62c8a8b..20ffbed 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -1696,8 +1696,7 @@ static void __init of_unittest_overlay_8(void)
overlay_name = overlay_name_from_nr(overlay_nr + i);
- ret = overlay_data_apply(overlay_name, &ovcs_id);
- if (ret < 0) {
+ if (!overlay_data_apply(overlay_name, &ovcs_id)) {
unittest(0, "could not apply overlay \"%s\"\n",
overlay_name);
return;
OpenPOWER on IntegriCloud