blob: afa6c3a5da71a41730fc41cf7cabc8b221fbe39c [file] [log] [blame]
From c637ece0a15c506cc84c52b01fbb30823d8281fe Mon Sep 17 00:00:00 2001
From: Frank Rowand <frank.rowand@sony.com>
Date: Thu, 19 Oct 2017 14:38:11 -0700
Subject: [PATCH 0918/1795] of: overlay: make pr_err() string unique
The same error string occurs in drivers/of/resolver.c. Change
the error here to more precisely describe this case, and avoid
the possible confusion of looking in the wrong source location
to understand the cause of an error.
Signed-off-by: Frank Rowand <frank.rowand@sony.com>
Signed-off-by: Rob Herring <robh@kernel.org>
(cherry picked from commit 4ee7c0d9649d472d31969b9cbb8151161db6a807)
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
drivers/of/overlay.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/of/overlay.c b/drivers/of/overlay.c
index f5fce0fea40b..c150abb9049d 100644
--- a/drivers/of/overlay.c
+++ b/drivers/of/overlay.c
@@ -598,7 +598,7 @@ static int init_overlay_changeset(struct overlay_changeset *ovcs,
fragment->target = of_find_node_by_path("/__symbols__");
if (!fragment->target) {
- pr_err("no symbols in root of device tree.\n");
+ pr_err("symbols in overlay, but not in live tree\n");
ret = -EINVAL;
goto err_free_fragments;
}
--
2.19.0