mtd: nand: davinci: fix to use mask_ale from pdata

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Mon Oct 5 02:59:01 EDT 2009


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=5cd0be8ec946ee3901e7f651a795225c6badff8f
Commit:     5cd0be8ec946ee3901e7f651a795225c6badff8f
Parent:     794d579ae17a7ec8028e4844096059c19431a96c
Author:     Hemant Pedanekar <hemantp at ti.com>
AuthorDate: Thu Oct 1 19:55:06 2009 +0530
Committer:  David Woodhouse <David.Woodhouse at intel.com>
CommitDate: Mon Oct 5 07:50:45 2009 +0100

    mtd: nand: davinci: fix to use mask_ale from pdata
    
    Correct typo to use mask_ale from platform data when set to non-zero.
    
    Signed-off-by: Hemant Pedanekar <hemantp at ti.com>
    Signed-off-by: David Woodhouse <David.Woodhouse at intel.com>
---
 drivers/mtd/nand/davinci_nand.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c
index f13f5b9..68cc924 100644
--- a/drivers/mtd/nand/davinci_nand.c
+++ b/drivers/mtd/nand/davinci_nand.c
@@ -599,7 +599,7 @@ static int __init nand_davinci_probe(struct platform_device *pdev)
 	info->mask_chipsel	= pdata->mask_chipsel;
 
 	/* use nandboot-capable ALE/CLE masks by default */
-	info->mask_ale		= pdata->mask_cle ? : MASK_ALE;
+	info->mask_ale		= pdata->mask_ale ? : MASK_ALE;
 	info->mask_cle		= pdata->mask_cle ? : MASK_CLE;
 
 	/* Set address of hardware control function */



More information about the linux-mtd-cvs mailing list