mtd/drivers/mtd/nand nand.c,1.24,1.25
gleixner at infradead.org
gleixner at infradead.org
Thu Aug 1 05:25:47 EDT 2002
Update of /home/cvs/mtd/drivers/mtd/nand
In directory phoenix.infradead.org:/tmp/cvs-serv4513/mtd/drivers/mtd/nand
Modified Files:
nand.c
Log Message:
added info about configuration
Index: nand.c
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/nand/nand.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- nand.c 28 Apr 2002 13:39:48 -0000 1.24
+++ nand.c 1 Aug 2002 09:25:45 -0000 1.25
@@ -1,9 +1,16 @@
/*
* drivers/mtd/nand.c
*
+ * Overview:
+ * This is the generic MTD driver for NAND flash devices. It should be
+ * capable of working with almost all NAND chips currently available.
+ *
+ * Additional technical information is available on
+ * http://www.linux-mtd.infradead.org/tech/nand.html
+ *
* Copyright (C) 2000 Steven J. Hill (sjhill at cotw.com)
*
- * 10-29-2001 Thomas Gleixner (gleixner at autronix.de)
+ * 10-29-2001 Thomas Gleixner (tglx at linutronix.de)
* - Changed nand_chip structure for controlline function to
* support different hardware structures (Access to
* controllines ALE,CLE,NCE via hardware specific function.
@@ -11,10 +18,10 @@
* driver hangup
* - init_waitqueue_head added in function nand_scan !!
*
- * 01-30-2002 Thomas Gleixner (gleixner at autronix.de)
+ * 01-30-2002 Thomas Gleixner (tglx at linutronix.de)
* change in nand_writev to block invalid vecs entries
*
- * 02-11-2002 Thomas Gleixner (gleixner at autronix.de)
+ * 02-11-2002 Thomas Gleixner (tglx at linutronix.de)
* - major rewrite to avoid duplicated code
* common nand_write_page function
* common get_chip function
@@ -26,36 +33,36 @@
* - support for device ready/busy line
* - read oob for more than one page enabled
*
- * 02-27-2002 Thomas Gleixner (gleixner at autronix.de)
+ * 02-27-2002 Thomas Gleixner (tglx at linutronix.de)
* - command-delay can be programmed
* - fixed exit from erase with callback-function enabled
*
- * 03-21-2002 Thomas Gleixner (gleixner at autronix.de)
+ * 03-21-2002 Thomas Gleixner (tglx at linutronix.de)
* - DEBUG improvements provided by Elizabeth Clarke
* (eclarke at aminocom.com)
* - added zero check for this->chip_delay
*
- * 04-03-2002 Thomas Gleixner (gleixner at autronix.de)
+ * 04-03-2002 Thomas Gleixner (tglx at linutronix.de)
* - added added hw-driver supplied command and wait functions
* - changed blocking for erase (erase suspend enabled)
* - check pointers before accessing flash provided by
* John Hall (john.hall at optionexist.co.uk)
*
- * 04-09-2002 Thomas Gleixner (gleixner at autronix.de)
+ * 04-09-2002 Thomas Gleixner (tglx at linutronix.de)
* - nand_wait repaired
*
- * 04-28-2002 Thomas Gleixner (gleixner at autronix.de)
+ * 04-28-2002 Thomas Gleixner (tglx at linutronix.de)
* - OOB config defines moved to nand.h
*
+ * 08-01-2002 Thomas Gleixner (tglx at linutronix.de)
+ * - changed my mailaddress, added pointer to tech/nand.html
+ *
* $Id$
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
- * Overview:
- * This is the generic MTD driver for NAND flash devices. It should be
- * capable of working with almost all NAND chips currently available.
*/
#include <linux/delay.h>
More information about the linux-mtd-cvs
mailing list