From patchwork Mon Aug 24 17:18:49 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [MTD,NAND] davinci: fix to use mask_ale from pdata Date: Mon, 24 Aug 2009 07:18:49 -0000 From: Hemant Pedanekar X-Patchwork-Id: 31971 Message-Id: <1251134329-21780-1-git-send-email-hemantp@ti.com> To: linux-mtd@lists.infradead.org Cc: davinci-linux-open-source@linux.davincidsp.com, hemantp@ti.com Corrected typo to use mask_ale from platform data when set to non-zero. Signed-off-by: Hemant Pedanekar --- 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 0fad648..20b04a2 100644 --- a/drivers/mtd/nand/davinci_nand.c +++ b/drivers/mtd/nand/davinci_nand.c @@ -571,7 +571,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 */