Skip to content

Commit

Permalink
mmc: dw_mmc: fix fifo access for 64-bit
Browse files Browse the repository at this point in the history
mci_writew causes a failure of fifo access for 64-bit.
mci_writeq is correct.

Signed-off-by: Seungwon Jeon <tgih.jun@samsung.com>
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
  • Loading branch information
Seungwon Jeon authored and Chris Ball committed Apr 4, 2013
1 parent e573d69 commit c09fbd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/mmc/host/dw_mmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1373,8 +1373,9 @@ static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
int len = dw_mci_push_part_bytes(host, buf, cnt);
buf += len;
cnt -= len;

if (host->part_buf_count == 8) {
mci_writew(host, DATA(host->data_offset),
mci_writeq(host, DATA(host->data_offset),
host->part_buf);
host->part_buf_count = 0;
}
Expand Down

0 comments on commit c09fbd7

Please sign in to comment.