From: Eric Nelson Date: Mon, 11 Apr 2016 22:21:37 +0000 (-0700) Subject: gunzip.c: use block layer for writes X-Git-Tag: v2016.05-rc2~25 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6a3bf3e57149dcfdb447590049ef6cad6cf7258b;p=u-boot gunzip.c: use block layer for writes Call blk_dwrite to ensure that the block cache is notified if enabled and remove build breakage when CONFIG_BLK is enabled. Signed-off-by: Eric Nelson Reviewed-by: Stephen Warren --- diff --git a/lib/gunzip.c b/lib/gunzip.c index 6d65ccccff..bc746d655e 100644 --- a/lib/gunzip.c +++ b/lib/gunzip.c @@ -232,9 +232,8 @@ int gzwrite(unsigned char *src, int len, gzwrite_progress(iteration++, totalfilled, szexpected); - blocks_written = dev->block_write(dev, outblock, - writeblocks, - writebuf); + blocks_written = blk_dwrite(dev, outblock, + writeblocks, writebuf); outblock += blocks_written; if (ctrlc()) { puts("abort\n");