]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
disk: get_device_and_partition() return value fixes
authorStephen Warren <swarren@nvidia.com>
Mon, 8 Oct 2012 07:45:54 +0000 (07:45 +0000)
committerTom Rini <trini@ti.com>
Wed, 17 Oct 2012 14:59:09 +0000 (07:59 -0700)
commit71bba424adcfa8c44100dee0fd139cc057eace65
tree1f0088c14448eec8312c32ef34a702023c6875b5
parent8af4472a775e5719127cd109cd5e7f2bde470131
disk: get_device_and_partition() return value fixes

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>
disk/part.c