mtd/drivers/mtd/nand tx4925ndfmc.c,NONE,1.1 tx4938ndfmc.c,NONE,1.1 Config.in,1.13,1.14 Kconfig,1.5,1.6 Makefile.common,1.3,1.4

ahennessy at infradead.org ahennessy at infradead.org
Tue Nov 4 17:59:15 EST 2003


Update of /home/cvs/mtd/drivers/mtd/nand
In directory phoenix.infradead.org:/tmp/cvs-serv22661/drivers/mtd/nand

Modified Files:
	Config.in Kconfig Makefile.common 
Added Files:
	tx4925ndfmc.c tx4938ndfmc.c 
Log Message:
Added support for the NAND flash device on the Toshiba RBTX4938 reference
board and for the SmartMedia Card on the Toshiba RBTX4925 reference board.


***** Error reading new file: [Errno 2] No such file or directory: 'tx4925ndfmc.c'
***** Error reading new file: [Errno 2] No such file or directory: 'tx4938ndfmc.c'
Index: Config.in
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/nand/Config.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Config.in	21 Oct 2003 09:43:42 -0000	1.13
+++ Config.in	4 Nov 2003 22:59:11 -0000	1.14
@@ -26,4 +26,12 @@
   fi
 fi
 
+if [ "$CONFIG_TOSHIBA_RBTX4925" = "y" ]; then
+   dep_tristate '  SmartMedia Card on Toshiba RBTX4925 reference board' CONFIG_MTD_NAND_TX4925NDFMC $CONFIG_MTD_NAND $CONFIG_TOSHIBA_RBTX4925_MPLEX_NAND
+fi
+
+if [ "$CONFIG_TOSHIBA_RBTX4938" = "y" ]; then
+   dep_tristate '  NAND Flash device on Toshiba RBTX4938 reference board' CONFIG_MTD_NAND_TX4938NDFMC $CONFIG_MTD_NAND $CONFIG_TOSHIBA_RBTX4938_MPLEX_NAND
+fi
+
 endmenu

Index: Kconfig
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/nand/Kconfig,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Kconfig	21 Oct 2003 09:43:42 -0000	1.5
+++ Kconfig	4 Nov 2003 22:59:11 -0000	1.6
@@ -52,6 +52,20 @@
 	tristate
 	default y if MTD_NAND = y || MTD_DOC2000 = y || MTD_DOC2001 = y || MTD_DOC2001PLUS = y
 	default m if MTD_NAND = m || MTD_DOC2000 = m || MTD_DOC2001 = m || MTD_DOC2001PLUS = m
+
+config MTD_NAND_TX4925NDFMC
+	tristate "SmartMedia Card on Toshiba RBTX4925 reference board"
+	depends on CONFIG_TOSHIBA_RBTX4925 && MTD_NAND && CONFIG_TOSHIBA_RBTX4925_MPLEX_NAND
+	help
+	  This enables the driver for the NAND flash device found on the
+	  Toshiba RBTX4925 reference board, which is a SmartMediaCard.
+
+config MTD_NAND_TX4938NDFMC
+	tristate "NAND Flash device on Toshiba RBTX4938 reference board"
+	depends on CONFIG_TOSHIBA_RBTX4938 && MTD_NAND && CONFIG_TOSHIBA_RBTX4938_MPLEX_NAND 
+	help
+	  This enables the driver for the NAND flash device found on the
+	  Toshiba RBTX4938 reference board.
 	
 endmenu
 

Index: Makefile.common
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/nand/Makefile.common,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Makefile.common	21 Oct 2003 09:43:42 -0000	1.3
+++ Makefile.common	4 Nov 2003 22:59:11 -0000	1.4
@@ -13,6 +13,8 @@
 obj-$(CONFIG_MTD_NAND_TOTO)	+= toto.o
 obj-$(CONFIG_MTD_NAND_AUTCPU12)	+= autcpu12.o
 obj-$(CONFIG_MTD_NAND_EDB7312)  += edb7312.o
+obj-$(CONFIG_MTD_NAND_TX4925NDFMC)  += tx4925ndfmc.o
+obj-$(CONFIG_MTD_NAND_TX4938NDFMC)  += tx4938ndfmc.o
 obj-$(CONFIG_MTD_NAND_IDS)	+= nand_ids.o
 
 -include $(TOPDIR)/Rules.make




More information about the linux-mtd-cvs mailing list