[PATCH] fixup! vsprintf: retire strerrorp in favor of %pe
Ahmad Fatoum
ahmad at a3f.at
Tue Sep 29 16:17:01 EDT 2020
The %pe patch set missed one instance of strerrorp that
was added after the patch set was initially drafted.
Fix it up.
Reported-by: Marco Felsch <mfe at pengutronix.de>
Signed-off-by: Ahmad Fatoum <ahmad at a3f.at>
---
drivers/of/base.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 6e2fb8b281e9..4e88af7b22e2 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -1588,7 +1588,7 @@ void barebox_register_fdt(const void *dtb)
root = of_unflatten_dtb(dtb);
if (IS_ERR(root)) {
- pr_err("Cannot unflatten dtb: %s\n", strerrorp(root));
+ pr_err("Cannot unflatten dtb: %pe\n", root);
return;
}
--
2.28.0
More information about the barebox
mailing list