|
From: <mar...@us...> - 2007-09-02 12:39:26
|
Revision: 1296
http://hackndev.svn.sourceforge.net/hackndev/?rev=1296&view=rev
Author: marex_z71
Date: 2007-09-02 05:39:22 -0700 (Sun, 02 Sep 2007)
Log Message:
-----------
PalmTX: correct command delay according to datasheet
Modified Paths:
--------------
linux4palm/linux/trunk/drivers/mtd/nand/palmtx.c
Modified: linux4palm/linux/trunk/drivers/mtd/nand/palmtx.c
===================================================================
--- linux4palm/linux/trunk/drivers/mtd/nand/palmtx.c 2007-09-02 11:22:01 UTC (rev 1295)
+++ linux4palm/linux/trunk/drivers/mtd/nand/palmtx.c 2007-09-02 12:39:22 UTC (rev 1296)
@@ -149,8 +149,8 @@
this->IO_ADDR_W = nandaddr;
this->cmd_ctrl = palmtx_hwcontrol;
this->dev_ready = palmtx_device_ready;
- /* 15 us command delay time */
- this->chip_delay = 15;
+ /* 10 us command delay time */
+ this->chip_delay = 10;
this->ecc.mode = NAND_ECC_SOFT;
this->options = NAND_NO_AUTOINCR;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|