lkml.org 
[lkml]   [2006]   [Aug]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH]nand base: misused maf id ( for Linux 2.6.18-RC4 & RC5 )
Date
When finding manufacturer, changed maf_id not maf_idx, so result is not correct.


--- linux-2.6.17_org/drivers/mtd/nand/nand_base.c 2006-08-28
12:29:32.000000000 +0800
+++ linux-2.6.17/drivers/mtd/nand/nand_base.c 2006-08-30 13:09:55.320000000
+0800
@@ -1093,9 +1093,10 @@

ret = nand_do_read_ops(mtd, from, &chip->ops);

+ *retlen = chip->ops.retlen;
+
nand_release_device(mtd);

- *retlen = chip->ops.retlen;
return ret;
}

@@ -1691,9 +1692,10 @@

ret = nand_do_write_ops(mtd, to, &chip->ops);

+ *retlen = chip->ops.retlen;
+
nand_release_device(mtd);

- *retlen = chip->ops.retlen;
return ret;
}

@@ -2222,7 +2224,7 @@
}

/* Try to identify manufacturer */
- for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_id++) {
+ for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
if (nand_manuf_ids[maf_idx].id == *maf_id)
break;
}

-
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: 2006-08-30 08:13    [W:0.052 / U:0.324 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site