Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fe2dc44eac1223a0e92859242f58fd2a58a6f8fa
Commit:     fe2dc44eac1223a0e92859242f58fd2a58a6f8fa
Parent:     81ab570f65395f09962f4bca0d89403f8911c071
Author:     Nicolas Pitre <[EMAIL PROTECTED]>
AuthorDate: Mon Sep 24 15:47:18 2007 -0400
Committer:  Pierre Ossman <[EMAIL PROTECTED]>
CommitDate: Tue Sep 25 19:03:31 2007 +0200

    mmc: pxamci: set proper block capabilities according to PXA flavor
    
    From PXA27x, it is possible to do 2048-byte block transfers.
    
    Signed-off-by: Nicolas Pitre <[EMAIL PROTECTED]>
    Signed-off-by: Pierre Ossman <[EMAIL PROTECTED]>
---
 drivers/mmc/host/pxamci.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/host/pxamci.c b/drivers/mmc/host/pxamci.c
index 03d1628..67acc6a 100644
--- a/drivers/mmc/host/pxamci.c
+++ b/drivers/mmc/host/pxamci.c
@@ -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.
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to