projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22439cf
)
of: unittest: Fix of_count_phandle_with_args() expected value message
author
Geert Uytterhoeven
<geert+renesas@glider.be>
Thu, 11 Jan 2024 08:50:25 +0000
(09:50 +0100)
committer
Rob Herring
<robh@kernel.org>
Thu, 11 Jan 2024 22:18:30 +0000
(16:18 -0600)
The expected result value for the call to of_count_phandle_with_args()
was updated from 7 to 8, but the accompanying error message was
forgotten.
Fixes:
4dde83569832f937
("of: Fix double free in of_parse_phandle_with_args_map")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link:
https://lore.kernel.org/r/20240111085025.2073894-1-geert+renesas@glider.be
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/unittest.c
patch
|
blob
|
history
diff --git
a/drivers/of/unittest.c
b/drivers/of/unittest.c
index
45bd0d2
..
cfd60e3
100644
(file)
--- a/
drivers/of/unittest.c
+++ b/
drivers/of/unittest.c
@@
-574,7
+574,7
@@
static void __init of_unittest_parse_phandle_with_args_map(void)
}
rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells");
- unittest(rc == 8, "of_count_phandle_with_args() returned %i, expected
7
\n", rc);
+ unittest(rc == 8, "of_count_phandle_with_args() returned %i, expected
8
\n", rc);
for (i = 0; i < 9; i++) {
bool passed = true;