diff options
author | Wu, Josh <Josh.wu@atmel.com> | 2014-05-07 17:06:08 +0800 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2014-05-27 00:10:46 +0200 |
commit | 9902c7b6f1c9b1e99e4d7c62cc7e98257aa04d0b (patch) | |
tree | 82fe3c2783c323e665819dcd65f70af29f660c7b /drivers | |
parent | 7d82d897722f57389ebe15924f47fab452cc3a19 (diff) | |
download | u-boot-imx-9902c7b6f1c9b1e99e4d7c62cc7e98257aa04d0b.zip u-boot-imx-9902c7b6f1c9b1e99e4d7c62cc7e98257aa04d0b.tar.gz u-boot-imx-9902c7b6f1c9b1e99e4d7c62cc7e98257aa04d0b.tar.bz2 |
mmc: atmel_mci: fix print incorrect buffer content for debug
Signed-off-by: Josh Wu <josh.wu@atmel.com>
[fix checkpatch line length warning]
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/gen_atmel_mci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mmc/gen_atmel_mci.c b/drivers/mmc/gen_atmel_mci.c index acca026..a57a9b1 100644 --- a/drivers/mmc/gen_atmel_mci.c +++ b/drivers/mmc/gen_atmel_mci.c @@ -243,9 +243,10 @@ mci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) #ifdef DEBUG if (data->flags & MMC_DATA_READ) { + u32 cnt = word_count * 4; printf("Read Data:\n"); - print_buffer(0, data->dest, 1, - word_count*4, 0); + print_buffer(0, data->dest + cnt * block_count, + 1, cnt, 0); } #endif #ifdef DEBUG |