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 <[email protected]>
Signed-off-by: Ahmad Fatoum <[email protected]>
---
 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


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to