From: Ɓukasz Majewski Date: Thu, 4 Apr 2013 04:32:58 +0000 (+0000) Subject: dfu: Increase DFU buffer size from 4MiB to 8MiB X-Git-Tag: v2013.04-rc3~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3cb5ca75a1d643666ce829a77abffe6145b4f820;p=u-boot dfu: Increase DFU buffer size from 4MiB to 8MiB Increase size of DMA buffer from 4MiB to 8MiB. This is necessary due to uImage size increase. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park --- diff --git a/include/dfu.h b/include/dfu.h index 5350d79450..784d8a442c 100644 --- a/include/dfu.h +++ b/include/dfu.h @@ -59,7 +59,7 @@ static inline unsigned int get_mmc_blk_size(int dev) #define DFU_NAME_SIZE 32 #define DFU_CMD_BUF_SIZE 128 -#define DFU_DATA_BUF_SIZE (1024*1024*4) /* 4 MiB */ +#define DFU_DATA_BUF_SIZE (1024*1024*8) /* 8 MiB */ struct dfu_entity { char name[DFU_NAME_SIZE];