All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] image-fit: switch ENOLINK to ENOENT
@ 2016-09-02 22:30 Jonathan Gray
  2016-09-07 18:00 ` [U-Boot] " Tom Rini
  2016-09-15 12:49 ` [U-Boot] [PATCH] " Stefan Roese
  0 siblings, 2 replies; 13+ messages in thread
From: Jonathan Gray @ 2016-09-02 22:30 UTC (permalink / raw)
  To: u-boot

ENOLINK is not required by POSIX and does not exist on OpenBSD
and likely other systems.

Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
---
 common/image-fit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/image-fit.c b/common/image-fit.c
index d8d4e95..79c0375 100644
--- a/common/image-fit.c
+++ b/common/image-fit.c
@@ -1566,7 +1566,7 @@ int fit_get_node_from_config(bootm_headers_t *images, const char *prop_name,
 	noffset = fit_conf_get_prop_node(fit_hdr, cfg_noffset, prop_name);
 	if (noffset < 0) {
 		debug("*  %s: no '%s' in config\n", prop_name, prop_name);
-		return -ENOLINK;
+		return -ENOENT;
 	}
 
 	return noffset;
-- 
2.9.3

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

end of thread, other threads:[~2016-09-16 12:34 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-02 22:30 [U-Boot] [PATCH] image-fit: switch ENOLINK to ENOENT Jonathan Gray
2016-09-07 18:00 ` [U-Boot] " Tom Rini
2016-09-08 12:01   ` Jonathan Gray
2016-09-08 12:48     ` Tom Rini
2016-09-08 13:06       ` Jonathan Gray
2016-09-08 13:15         ` Tom Rini
2016-09-08 13:53           ` Jonathan Gray
2016-09-08 15:17             ` Tom Rini
2016-09-08 15:54               ` Jonathan Gray
2016-09-15 12:49 ` [U-Boot] [PATCH] " Stefan Roese
2016-09-15 14:08   ` Mario Six
2016-09-15 21:27     ` Jonathan Gray
2016-09-16 12:34       ` Mario Six

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.