From 0850301747228a3327f2815a85284d26ade3de95 Mon Sep 17 00:00:00 2001
From: Andreas Huber <andreas.huber@keymile.com>
Date: Tue, 19 May 2009 11:06:30 +0200
Subject: [PATCH] UBI: fix return code in ubi_volume_read

Return -ENODEV instead of 0 when trying to read from a non existing volume.

Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
Signed-off-by: Stefan Roese <sr@denx.de>
---
 common/cmd_ubi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/cmd_ubi.c b/common/cmd_ubi.c
index 02a2e55b502..64a730724c6 100644
--- a/common/cmd_ubi.c
+++ b/common/cmd_ubi.c
@@ -327,7 +327,7 @@ static int ubi_volume_read(char *volume, char *buf, size_t size)
 	}
 	if (i == ubi->vtbl_slots) {
 		printf("%s volume not found\n", volume);
-		return 0;
+		return -ENODEV;
 	}
 
 	printf("read %i bytes from volume %d to %x(buf address)\n",
-- 
GitLab