summary refs log tree commit diff
path: root/drivers/mtd/nand
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2005-01-18 16:15:00 +0000
committerThomas Gleixner <tglx@mtd.linutronix.de>2005-05-23 11:29:39 +0200
commit15266bb74d0156556f9541c9817b778286ffe5d6 (patch)
treee1f1d40493a3f677cef6792c39e8a4cce0f49388 /drivers/mtd/nand
parent6fc93d8ca7a093feb403aca4ee3cb5bda338392c (diff)
downloadlinux-15266bb74d0156556f9541c9817b778286ffe5d6.tar.gz
[MTD] NAND replace yield
Replace yield by msleep. M.Wilcox stared at it and frowned

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r--drivers/mtd/nand/nand_base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 2ac452e3ad6b..68a6014f5560 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -55,7 +55,7 @@
  *	The AG-AND chips have nice features for speed improvement,
  *	which are not supported yet. Read / program 4 pages in one go.
  *
- * $Id: nand_base.c,v 1.127 2005/01/17 18:35:22 dmarlin Exp $
+ * $Id: nand_base.c,v 1.128 2005/01/18 16:14:56 gleixner Exp $
  *
  * 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
@@ -810,7 +810,7 @@ static int nand_wait(struct mtd_info *mtd, struct nand_chip *this, int state)
 			if (this->read_byte(mtd) & NAND_STATUS_READY)
 				break;
 		}
-		yield ();
+		msleep(1);
 	}
 	status = (int) this->read_byte(mtd);
 	return status;