From: Igor Opaniuk Date: Tue, 17 Jul 2018 11:33:26 +0000 (+0300) Subject: avb2.0: use block API in AVB ops X-Git-Tag: v2018.09-rc1~43 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e9ee7398d64796d441067d5456b6e65780d11dbd;hp=b0aa74a2640cd1be1d9bdfd8024ed3faa119e447;p=oweals%2Fu-boot.git avb2.0: use block API in AVB ops Use blk_dread()/blk_dwrite() in mmc_read()/mmc_write() AVB operation implementations. This fixes compilation issues when CONFIG_BLK is enabled. Signed-off-by: Igor Opaniuk Tested-by: Eugeniu Rosca --- diff --git a/common/avb_verify.c b/common/avb_verify.c index f9a00f8871..20e35ade30 100644 --- a/common/avb_verify.c +++ b/common/avb_verify.c @@ -5,6 +5,7 @@ */ #include +#include #include #include #include @@ -288,8 +289,8 @@ static unsigned long mmc_read_and_flush(struct mmc_part *part, tmp_buf = buffer; } - blks = part->mmc->block_dev.block_read(part->mmc_blk, - start, sectors, tmp_buf); + blks = blk_dread(part->mmc_blk, + start, sectors, tmp_buf); /* flush cache after read */ flush_cache((ulong)tmp_buf, sectors * part->info.blksz); @@ -327,8 +328,8 @@ static unsigned long mmc_write(struct mmc_part *part, lbaint_t start, tmp_buf = buffer; } - return part->mmc->block_dev.block_write(part->mmc_blk, - start, sectors, tmp_buf); + return blk_dwrite(part->mmc_blk, + start, sectors, tmp_buf); } static struct mmc_part *get_partition(AvbOps *ops, const char *partition)