Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 65645
b: refs/heads/master
c: fe2dc44
h: refs/heads/master
i:
  65643: ffa9650
v: v3
  • Loading branch information
Nicolas Pitre authored and Pierre Ossman committed Sep 25, 2007
1 parent 6bde160 commit 81605f1
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: 81ab570f65395f09962f4bca0d89403f8911c071
refs/heads/master: fe2dc44eac1223a0e92859242f58fd2a58a6f8fa
4 changes: 2 additions & 2 deletions trunk/drivers/mmc/host/pxamci.c
Original file line number Diff line number Diff line change
Expand Up @@ -444,9 +444,9 @@ static int pxamci_probe(struct platform_device *pdev)
mmc->max_seg_size = PAGE_SIZE;

/*
* Block length register is 10 bits.
* Block length register is only 10 bits before PXA27x.
*/
mmc->max_blk_size = 1023;
mmc->max_blk_size = (cpu_is_pxa21x() || cpu_is_pxa25x()) ? 1023 : 2048;

/*
* Block count register is 16 bits.
Expand Down

0 comments on commit 81605f1

Please sign in to comment.