Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 176964
b: refs/heads/master
c: 98ecc91
h: refs/heads/master
v: v3
  • Loading branch information
David Hunter authored and David Woodhouse committed Nov 30, 2009
1 parent 754c178 commit 4f811f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 6b0d9a84124937f048bcb8b21313152b23063978
refs/heads/master: 98ecc914d0a48dbbcbb5fc866ab5b59a52afbd41
4 changes: 2 additions & 2 deletions trunk/drivers/mtd/nand/pxa3xx_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ static int handle_data_pio(struct pxa3xx_nand_info *info)
switch (info->state) {
case STATE_PIO_WRITING:
__raw_writesl(info->mmio_base + NDDB, info->data_buff,
info->data_size << 2);
info->data_size >> 2);

enable_int(info, NDSR_CS0_BBD | NDSR_CS0_CMDD);

Expand All @@ -501,7 +501,7 @@ static int handle_data_pio(struct pxa3xx_nand_info *info)
break;
case STATE_PIO_READING:
__raw_readsl(info->mmio_base + NDDB, info->data_buff,
info->data_size << 2);
info->data_size >> 2);
break;
default:
printk(KERN_ERR "%s: invalid state %d\n", __func__,
Expand Down

0 comments on commit 4f811f7

Please sign in to comment.