diff options
author | Alex Deymo | 2017-04-02 01:49:50 -0700 |
---|---|---|
committer | Tom Rini | 2017-05-11 22:03:37 -0400 |
commit | 88b6329cce9b344159ac7d708f8f2d6bfd98faf0 (patch) | |
tree | 467c895e20a1943197b9b186c7cb7f1d9b1bd6d2 /disk/part.c | |
parent | 210a7176ee11b6af6746ba7ca025f5b9afbcb003 (diff) |
disk: Return the partition number in part_get_info_by_name()
Similar to what blk_get_device_part_str() does, this patch makes
part_get_info_by_name() return the partition number in case of a match.
This is useful when the partition number is needed and not just the
descriptor.
Signed-off-by: Alex Deymo <deymo@google.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'disk/part.c')
-rw-r--r-- | disk/part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part.c b/disk/part.c index cd447024c0d..491b02dc9c1 100644 --- a/disk/part.c +++ b/disk/part.c @@ -635,7 +635,7 @@ int part_get_info_by_name(struct blk_desc *dev_desc, const char *name, } if (strcmp(name, (const char *)info->name) == 0) { /* matched */ - return 0; + return i; } } } |