lkml.org 
[lkml]   [2005]   [Aug]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[patch] Fix a bit/byte counting error in the MMC/SD code
From
Date
This fixes what looks like a bit/byte counting error in the MMC/SD code
which was causing data corruption (in the -mm tree).

Signed-off-by: Richard Purdie <rpurdie@rpsys.net>

Index: linux-2.6.12/drivers/mmc/mmc.c
===================================================================
--- linux-2.6.12.orig/drivers/mmc/mmc.c 2005-08-04 22:27:44.000000000 +0100
+++ linux-2.6.12/drivers/mmc/mmc.c 2005-08-04 22:30:02.000000000 +0100
@@ -923,7 +923,7 @@
mrq.cmd = &cmd;
mrq.data = &data;

- sg_init_one(&sg, (u8*)card->raw_scr, 64);
+ sg_init_one(&sg, (u8*)card->raw_scr, 8);

err = mmc_wait_for_req(host, &mrq);
if (err != MMC_ERR_NONE) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-08-04 23:51    [W:0.047 / U:1.088 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site