* [PATCH] [MTD] [NAND] davinci: fix to use mask_ale from pdata
@ 2009-08-24 17:18 Hemant Pedanekar
0 siblings, 0 replies; 5+ messages in thread
From: Hemant Pedanekar @ 2009-08-24 17:18 UTC (permalink / raw)
To: linux-mtd; +Cc: davinci-linux-open-source, hemantp
Corrected typo to use mask_ale from platform data when set to non-zero.
Signed-off-by: Hemant Pedanekar <hemantp@ti.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 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] mtd: nand: davinci: fix to use mask_ale from pdata
@ 2009-10-01 14:25 Hemant Pedanekar
2009-10-08 15:16 ` Kevin Hilman
0 siblings, 1 reply; 5+ messages in thread
From: Hemant Pedanekar @ 2009-10-01 14:25 UTC (permalink / raw)
To: dwmw2, dbrownell, akpm, Artem.Bityutskiy, linux-kernel, linux-mtd
Cc: davinci-linux-open-source, hemantp
Correct typo to use mask_ale from platform data when set to non-zero.
Signed-off-by: Hemant Pedanekar <hemantp@ti.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 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] mtd: nand: davinci: fix to use mask_ale from pdata
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
2009-10-08 15:37 ` Narnakaje, Snehaprabha
0 siblings, 1 reply; 5+ messages in thread
From: Kevin Hilman @ 2009-10-08 15:16 UTC (permalink / raw)
To: Hemant Pedanekar
Cc: Artem.Bityutskiy, davinci-linux-open-source, dbrownell,
linux-kernel, linux-mtd, akpm, dwmw2
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH] mtd: nand: davinci: fix to use mask_ale from pdata
2009-10-08 15:16 ` Kevin Hilman
@ 2009-10-08 15:37 ` Narnakaje, Snehaprabha
2009-10-09 4:17 ` Artem Bityutskiy
0 siblings, 1 reply; 5+ messages in thread
From: Narnakaje, Snehaprabha @ 2009-10-08 15:37 UTC (permalink / raw)
To: Kevin Hilman, Pedanekar, Hemant, akpm@linux-foundation.org
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, dwmw2@infradead.org
Andrew,
Could you please apply this patch to the -mm tree and thus queue it up for 2.6.32-rc series?
Thanks
Sneha
> -----Original Message-----
> From: davinci-linux-open-source-bounces@linux.davincidsp.com
> [mailto:davinci-linux-open-source-bounces@linux.davincidsp.com] On Behalf
> Of Kevin Hilman
> Sent: Thursday, October 08, 2009 11:16 AM
> To: Pedanekar, Hemant
> Cc: Artem.Bityutskiy@nokia.com; davinci-linux-open-
> source@linux.davincidsp.com; dbrownell@users.sourceforge.net; linux-
> mtd@lists.infradead.org; akpm@linux-foundation.org; dwmw2@infradead.org;
> linux-kernel@vger.kernel.org
> Subject: Re: [PATCH] mtd: nand: davinci: fix to use mask_ale from pdata
>
> 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
>
> _______________________________________________
> Davinci-linux-open-source mailing list
> Davinci-linux-open-source@linux.davincidsp.com
> http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] mtd: nand: davinci: fix to use mask_ale from pdata
2009-10-08 15:37 ` Narnakaje, Snehaprabha
@ 2009-10-09 4:17 ` Artem Bityutskiy
0 siblings, 0 replies; 5+ messages in thread
From: Artem Bityutskiy @ 2009-10-09 4:17 UTC (permalink / raw)
To: ext Narnakaje, Snehaprabha
Cc: davinci-linux-open-source@linux.davincidsp.com,
dbrownell@users.sourceforge.net, Pedanekar, Hemant, Kevin Hilman,
linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org,
akpm@linux-foundation.org, dwmw2@infradead.org
On 10/08/2009 06:37 PM, ext Narnakaje, Snehaprabha wrote:
> Andrew,
>
> Could you please apply this patch to the -mm tree and thus queue it up for 2.6.32-rc series?
FYI, this patch is already in the mtd-2.6.git tree. So you should bug
dwmw2 to push it to rc3
--
Best Regards,
Artem Bityutskiy (Артём Битюцкий)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-10-09 4:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2009-10-08 15:37 ` Narnakaje, Snehaprabha
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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).