From: Kevin Hilman <khilman@deeprootsystems.com>
To: Hemant Pedanekar <hemantp@ti.com>
Cc: Artem.Bityutskiy@nokia.com,
davinci-linux-open-source@linux.davincidsp.com,
dbrownell@users.sourceforge.net, linux-kernel@vger.kernel.org,
linux-mtd@lists.infradead.org, akpm@linux-foundation.org,
dwmw2@infradead.org
Subject: Re: [PATCH] mtd: nand: davinci: fix to use mask_ale from pdata
Date: Thu, 08 Oct 2009 08:16:10 -0700 [thread overview]
Message-ID: <87tyy9dih1.fsf@deeprootsystems.com> (raw)
In-Reply-To: <1254407106-19390-1-git-send-email-hemantp@ti.com> (Hemant Pedanekar's message of "Thu\, 1 Oct 2009 19\:55\:06 +0530")
Hemant Pedanekar <hemantp@ti.com> writes:
> Correct typo to use mask_ale from platform data when set to non-zero.
>
> Signed-off-by: Hemant Pedanekar <hemantp@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Could this fix be queued for the .32-rc series please?
Thanks,
Kevin
> ---
> 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 */
> --
> 1.6.2.4
>
> _______________________________________________
> Davinci-linux-open-source mailing list
> Davinci-linux-open-source@linux.davincidsp.com
> http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
WARNING: multiple messages have this Message-ID (diff)
From: Kevin Hilman <khilman@deeprootsystems.com>
To: Hemant Pedanekar <hemantp@ti.com>
Cc: dwmw2@infradead.org, dbrownell@users.sourceforge.net,
akpm@linux-foundation.org, Artem.Bityutskiy@nokia.com,
linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org,
davinci-linux-open-source@linux.davincidsp.com
Subject: Re: [PATCH] mtd: nand: davinci: fix to use mask_ale from pdata
Date: Thu, 08 Oct 2009 08:16:10 -0700 [thread overview]
Message-ID: <87tyy9dih1.fsf@deeprootsystems.com> (raw)
In-Reply-To: <1254407106-19390-1-git-send-email-hemantp@ti.com> (Hemant Pedanekar's message of "Thu\, 1 Oct 2009 19\:55\:06 +0530")
Hemant Pedanekar <hemantp@ti.com> writes:
> Correct typo to use mask_ale from platform data when set to non-zero.
>
> Signed-off-by: Hemant Pedanekar <hemantp@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Could this fix be queued for the .32-rc series please?
Thanks,
Kevin
> ---
> 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 */
> --
> 1.6.2.4
>
> _______________________________________________
> Davinci-linux-open-source mailing list
> Davinci-linux-open-source@linux.davincidsp.com
> http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
next prev parent reply other threads:[~2009-10-08 15:16 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-01 14:25 [PATCH] mtd: nand: davinci: fix to use mask_ale from pdata Hemant Pedanekar
2009-10-08 15:16 ` Kevin Hilman [this message]
2009-10-08 15:16 ` Kevin Hilman
2009-10-08 15:37 ` Narnakaje, Snehaprabha
2009-10-08 15:37 ` Narnakaje, Snehaprabha
2009-10-09 4:17 ` Artem Bityutskiy
2009-10-09 4:17 ` Artem Bityutskiy
-- strict thread matches above, loose matches on Subject: below --
2009-08-24 17:18 [PATCH] [MTD] [NAND] " Hemant Pedanekar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87tyy9dih1.fsf@deeprootsystems.com \
--to=khilman@deeprootsystems.com \
--cc=Artem.Bityutskiy@nokia.com \
--cc=akpm@linux-foundation.org \
--cc=davinci-linux-open-source@linux.davincidsp.com \
--cc=dbrownell@users.sourceforge.net \
--cc=dwmw2@infradead.org \
--cc=hemantp@ti.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.