summaryrefslogtreecommitdiff
path: root/drivers/of/unittest.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2023-08-22 00:37:06 +0300
committerRob Herring <robh@kernel.org>2023-08-22 01:09:57 +0300
commitdfb9758a4af19b5d04fe943c56651675038f29aa (patch)
tree9fb6a69e9e0f44726025598d715ddb702e45c39f /drivers/of/unittest.c
parent7ceb60ece8567e58b7e04965b3a434a0ed606053 (diff)
parent7882541ca06d51a6c12d687827176c16d5e05f65 (diff)
downloadlinux-dfb9758a4af19b5d04fe943c56651675038f29aa.tar.xz
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);