Re: [U-Boot] [PATCH v5 1/6] disk: part: Extend API to get partition info

2019-07-24 Thread Tom Rini
On Fri, Jul 05, 2019 at 03:37:31PM +0300, Igor Opaniuk wrote: > From: Ruslan Trofymenko > > This patch adds part_get_info_by_dev_and_name_or_num() function which > allows us to get partition info from its number or name. Partition of > interest is specified by string like "device_num:partition_n

[U-Boot] [PATCH v5 1/6] disk: part: Extend API to get partition info

2019-07-05 Thread Igor Opaniuk
From: Ruslan Trofymenko This patch adds part_get_info_by_dev_and_name_or_num() function which allows us to get partition info from its number or name. Partition of interest is specified by string like "device_num:partition_number" or "device_num#partition_name". The patch was extracted from [1].