Re: [PATCH 17/19] efi_loader: disk: use udevice instead of blk_desc

2022-02-05 Thread Heinrich Schuchardt
On 2/2/22 02:08, AKASHI Takahiro wrote: In most of all cases, we can avoid using blk_desc which is expected to be private to udevice(UCLASS_BLK), that is, the data should not be manupulated outside the device driver unless really needed. Now efi_disk's internally use dev_read/write() interfaces.

[PATCH 17/19] efi_loader: disk: use udevice instead of blk_desc

2022-02-01 Thread AKASHI Takahiro
In most of all cases, we can avoid using blk_desc which is expected to be private to udevice(UCLASS_BLK), that is, the data should not be manupulated outside the device driver unless really needed. Now efi_disk's internally use dev_read/write() interfaces. Signed-off-by: AKASHI Takahiro Reviewed