This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / mtd / chips / map_ram.c
index 283be02..7e17b45 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Common code to handle map devices which are simple RAM
  * (C) 2000 Red Hat. GPL'd.
- * $Id: map_ram.c,v 1.20 2004/08/09 13:19:43 dwmw2 Exp $
+ * $Id: map_ram.c,v 1.17 2003/05/28 12:51:49 dwmw2 Exp $
  */
 
 #include <linux/module.h>
@@ -104,17 +104,13 @@ static int mapram_erase (struct mtd_info *mtd, struct erase_info *instr)
        /* Yeah, it's inefficient. Who cares? It's faster than a _real_
           flash erase. */
        struct map_info *map = (struct map_info *)mtd->priv;
-       map_word allff;
        unsigned long i;
 
-       allff = map_word_ff(map);
+       for (i=0; i<instr->len; i++)
+               map_write8(map, 0xFF, instr->addr + i);
 
-       for (i=0; i<instr->len; i += map_bankwidth(map))
-               map_write(map, allff, instr->addr + i);
-
-       instr->state = MTD_ERASE_DONE;
-
-       mtd_erase_callback(instr);
+       if (instr->callback)
+               instr->callback(instr);
 
        return 0;
 }