aboutsummaryrefslogtreecommitdiff
path: root/drivers/of/unittest.c
diff options
context:
space:
mode:
authorGravatar Rob Herring <robh@kernel.org> 2023-08-21 16:37:06 -0500
committerGravatar Rob Herring <robh@kernel.org> 2023-08-21 17:09:57 -0500
commitdfb9758a4af19b5d04fe943c56651675038f29aa (patch)
tree9fb6a69e9e0f44726025598d715ddb702e45c39f /drivers/of/unittest.c
parentdt-bindings: pps: pps-gpio: Convert to yaml (diff)
parentof/platform: increase refcount of fwnode (diff)
downloadlinux-dfb9758a4af19b5d04fe943c56651675038f29aa.tar.gz
linux-dfb9758a4af19b5d04fe943c56651675038f29aa.tar.bz2
linux-dfb9758a4af19b5d04fe943c56651675038f29aa.zip
Merge branch 'dt/linus' into dt/next
Pick up changeset fixes for further rework.
Diffstat (limited to 'drivers/of/unittest.c')
-rw-r--r--drivers/of/unittest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 3444386ceb02..ac2d2ba24919 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -664,12 +664,12 @@ static void __init of_unittest_parse_phandle_with_args_map(void)
memset(&args, 0, sizeof(args));
EXPECT_BEGIN(KERN_INFO,
- "OF: /testcase-data/phandle-tests/consumer-b: could not find phandle");
+ "OF: /testcase-data/phandle-tests/consumer-b: could not find phandle 12345678");
rc = of_parse_phandle_with_args_map(np, "phandle-list-bad-phandle",
"phandle", 0, &args);
EXPECT_END(KERN_INFO,
- "OF: /testcase-data/phandle-tests/consumer-b: could not find phandle");
+ "OF: /testcase-data/phandle-tests/consumer-b: could not find phandle 12345678");
unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);