mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] state: make type check error verbose
@ 2015-11-20  9:03 Jan Remmet
  2015-11-23  6:52 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Remmet @ 2015-11-20  9:03 UTC (permalink / raw)
  To: barebox

Wrong type let state probe fail with ENOENT.

Signed-off-by: Jan Remmet <j.remmet@phytec.de>
---
 common/state.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/common/state.c b/common/state.c
index 117a686..a161b94 100644
--- a/common/state.c
+++ b/common/state.c
@@ -716,6 +716,8 @@ static int state_convert_node_variable(struct state *state,
 
 	vtype = state_find_type_by_name(type_name);
 	if (!vtype) {
+		dev_err(&state->dev, "unkown type: %s in %s\n", type_name,
+			node->full_name);
 		ret = -ENOENT;
 		goto out_free;
 	}
-- 
1.9.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-23  6:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-20  9:03 [PATCH] state: make type check error verbose Jan Remmet
2015-11-23  6:52 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox