The patch titled tmio_mmc: revise a limit of the data size has been added to the -mm tree. Its filename is tmio_mmc-revise-a-limit-of-the-data-size.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: tmio_mmc: revise a limit of the data size From: Yusuke Goda <yusuke.goda.sx@xxxxxxxxxxx> When running in 4-bit bus width mode, it is entirely possible to transfer data in block sizes of 2 bytes and larger. Relax the conditional check to allow 2-byte data block transfers which were previously disallowed. [matt@xxxxxxxxxxxxxxxxx: wrote changelog] Signed-off-by: Yusuke Goda <yusuke.goda.sx@xxxxxxxxxxx> Cc: Matt Fleming <matt@xxxxxxxxxxxxxxxxx> Cc: Ian Molton <ian@xxxxxxxxxxxxxx> Cc: Magnus Damm <damm@xxxxxxxxxxxxx> Cc: Samuel Ortiz <sameo@xxxxxxxxxxxxxxx> Cc: Paul Mundt <lethal@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mmc/host/tmio_mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/mmc/host/tmio_mmc.c~tmio_mmc-revise-a-limit-of-the-data-size drivers/mmc/host/tmio_mmc.c --- a/drivers/mmc/host/tmio_mmc.c~tmio_mmc-revise-a-limit-of-the-data-size +++ a/drivers/mmc/host/tmio_mmc.c @@ -661,7 +661,7 @@ static int tmio_mmc_start_data(struct tm data->blksz, data->blocks); /* Hardware cannot perform 1 and 2 byte requests in 4 bit mode */ - if (data->blksz < 4 && host->mmc->ios.bus_width == MMC_BUS_WIDTH_4) { + if (data->blksz < 2 && host->mmc->ios.bus_width == MMC_BUS_WIDTH_4) { pr_err("%s: %d byte block unsupported in 4 bit mode\n", mmc_hostname(host->mmc), data->blksz); return -EINVAL; _ Patches currently in -mm which might be from yusuke.goda.sx@xxxxxxxxxxx are tmio_mmc-revise-a-limit-of-the-data-size.patch tmio_mmc-revise-a-limit-of-the-data-size-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html