diff mbox

[U-Boot] disk: get_device_and_partition() return value fixes

Message ID 1349718354-28261-1-git-send-email-swarren@wwwdotorg.org
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Stephen Warren Oct. 8, 2012, 5:45 p.m. UTC
From: Stephen Warren <swarren@nvidia.com>

When no valid partitions are found, guarantee that we return -1. This
most likely already happens, since the most recent get_partition_info()
will have returned an error. However, it's best to be explicit.

Remove an unnecessary assignment of ret=0 in the success case; this value
is over-written with the processed partition ID later.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
Tom, this probably makes sense to go into the release, although I don't
think it's critical.

 disk/part.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Tom Rini Oct. 17, 2012, 3 p.m. UTC | #1
On Mon, Oct 08, 2012 at 07:45:54AM -0000, Stephen Warren wrote:

> From: Stephen Warren <swarren@nvidia.com>
> 
> When no valid partitions are found, guarantee that we return -1. This
> most likely already happens, since the most recent get_partition_info()
> will have returned an error. However, it's best to be explicit.
> 
> Remove an unnecessary assignment of ret=0 in the success case; this value
> is over-written with the processed partition ID later.
> 
> Signed-off-by: Stephen Warren <swarren@nvidia.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/disk/part.c b/disk/part.c
index 3022969..a0c77dd 100644
--- a/disk/part.c
+++ b/disk/part.c
@@ -624,9 +624,9 @@  int get_device_and_partition(const char *ifname, const char *dev_part_str,
 			 */
 			if (p == MAX_SEARCH_PARTITIONS + 1)
 				*info = tmpinfo;
-			ret = 0;
 		} else {
 			printf("** No valid partitions found **\n");
+			ret = -1;
 			goto cleanup;
 		}
 	}