Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 339526
b: refs/heads/master
c: 4b85da0
h: refs/heads/master
v: v3
  • Loading branch information
Davide Ciminaghi authored and Russell King committed Dec 11, 2012
1 parent b7fac0d commit 98278d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a9a83785def8bf9142b37c86ffcb0fdc93fb851e
refs/heads/master: 4b85da08c4d19f5de48d904d4f879dcfa04ec14c
8 changes: 4 additions & 4 deletions trunk/drivers/mmc/host/mmci.c
Original file line number Diff line number Diff line change
Expand Up @@ -863,14 +863,14 @@ static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int rema
if (unlikely(count & 0x3)) {
if (count < 4) {
unsigned char buf[4];
readsl(base + MMCIFIFO, buf, 1);
ioread32_rep(base + MMCIFIFO, buf, 1);
memcpy(ptr, buf, count);
} else {
readsl(base + MMCIFIFO, ptr, count >> 2);
ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
count &= ~0x3;
}
} else {
readsl(base + MMCIFIFO, ptr, count >> 2);
ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
}

ptr += count;
Expand Down Expand Up @@ -907,7 +907,7 @@ static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int rem
* byte become a 32bit write, 7 bytes will be two
* 32bit writes etc.
*/
writesl(base + MMCIFIFO, ptr, (count + 3) >> 2);
iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);

ptr += count;
remain -= count;
Expand Down

0 comments on commit 98278d4

Please sign in to comment.