Commit 417b1bf8 authored by Jeonghan Kim's avatar Jeonghan Kim Committed by Ulf Hansson

mmc: block: Change MMC_IOC_MAX_BYTES

It is used for limitation of buffer size during IOCTL such as FFU.
However, eMMC FW size is bigger than (512L*256).
(For instance, currently, Samsung eMMC FW size is over 300KB.)
So, it needs to increase to execute FFU.
Signed-off-by: default avatarJeonghan Kim <jh4u.kim@samsung.com>
Acked-by: default avatarJaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent d9943c68
...@@ -69,6 +69,6 @@ struct mmc_ioc_multi_cmd { ...@@ -69,6 +69,6 @@ struct mmc_ioc_multi_cmd {
* is enforced per ioctl call. For larger data transfers, use the normal * is enforced per ioctl call. For larger data transfers, use the normal
* block device operations. * block device operations.
*/ */
#define MMC_IOC_MAX_BYTES (512L * 256) #define MMC_IOC_MAX_BYTES (512L * 1024)
#define MMC_IOC_MAX_CMDS 255 #define MMC_IOC_MAX_CMDS 255
#endif /* LINUX_MMC_IOCTL_H */ #endif /* LINUX_MMC_IOCTL_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment