linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mtd: nand: pxa3xx_nand: Update Kconfig information
@ 2017-09-28 14:36 Gregory CLEMENT
  2017-09-29  8:51 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Gregory CLEMENT @ 2017-09-28 14:36 UTC (permalink / raw)
  To: Boris Brezillon
  Cc: Richard Weinberger, David Woodhouse, Brian Norris, Marek Vasut,
	Cyrille Pitchen, linux-mtd, linux-kernel, Thomas Petazzoni,
	Antoine Tenart, Miquèl Raynal, Nadav Haklai, Shadi Ammouri,
	Yehuda Yitschak, Omri Itach, Hanna Hawa, Igal Liberman,
	Marcin Wojtas, Gregory CLEMENT

More and more SoCs use the pxa3xx_nand driver for their controller but
the list of them was not updated. This patch add the last SoCs using the
driver.

Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
---
 drivers/mtd/nand/Kconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index 3f2036f31da4..d8633e0b7e20 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -318,7 +318,8 @@ config MTD_NAND_PXA3xx
 	depends on PXA3xx || ARCH_MMP || PLAT_ORION || ARCH_MVEBU
 	help
 	  This enables the driver for the NAND flash device found on
-	  PXA3xx processors (NFCv1) and also on Armada 370/XP (NFCv2).
+	  PXA3xx processors (NFCv1) and also on Armada 32bits(XP, 370, 375,
+	  38x, 39x) and 64bits (7K, 8K) (NFCv2).
 
 config MTD_NAND_SLC_LPC32XX
 	tristate "NXP LPC32xx SLC Controller"
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] mtd: nand: pxa3xx_nand: Update Kconfig information
  2017-09-28 14:36 [PATCH] mtd: nand: pxa3xx_nand: Update Kconfig information Gregory CLEMENT
@ 2017-09-29  8:51 ` Thomas Petazzoni
  2017-09-29  8:52   ` Gregory CLEMENT
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2017-09-29  8:51 UTC (permalink / raw)
  To: Gregory CLEMENT
  Cc: Boris Brezillon, Yehuda Yitschak, Omri Itach, Marcin Wojtas,
	Richard Weinberger, Antoine Tenart, Miquèl Raynal,
	linux-kernel, Nadav Haklai, Marek Vasut, linux-mtd,
	Cyrille Pitchen, Shadi Ammouri, Brian Norris, David Woodhouse,
	Hanna Hawa, Igal Liberman

Hello,

Entering nitpick mode.

On Thu, 28 Sep 2017 16:36:57 +0200, Gregory CLEMENT wrote:

>  	  This enables the driver for the NAND flash device found on
> -	  PXA3xx processors (NFCv1) and also on Armada 370/XP (NFCv2).
> +	  PXA3xx processors (NFCv1) and also on Armada 32bits(XP, 370, 375,

missing space before parenthesis.

> +	  38x, 39x) and 64bits (7K, 8K) (NFCv2).

Also "Armada 32bits" isn't very good IMO, what about:

	and also on 32-bit Armada platforms (XP, 370, 375, 38x, 39x)
	and 64-bit Armada platforms (7K, 8K) (NFCv2).

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mtd: nand: pxa3xx_nand: Update Kconfig information
  2017-09-29  8:51 ` Thomas Petazzoni
@ 2017-09-29  8:52   ` Gregory CLEMENT
  0 siblings, 0 replies; 3+ messages in thread
From: Gregory CLEMENT @ 2017-09-29  8:52 UTC (permalink / raw)
  To: Thomas Petazzoni
  Cc: Boris Brezillon, Yehuda Yitschak, Omri Itach, Marcin Wojtas,
	Richard Weinberger, Antoine Tenart, Miquèl Raynal,
	linux-kernel, Nadav Haklai, Marek Vasut, linux-mtd,
	Cyrille Pitchen, Shadi Ammouri, Brian Norris, David Woodhouse,
	Hanna Hawa, Igal Liberman

Hi Thomas,
 
 On ven., sept. 29 2017, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote:

> Hello,
>
> Entering nitpick mode.

nitpick accpeted! :)

I am going to send a v2.

Gregory

>
> On Thu, 28 Sep 2017 16:36:57 +0200, Gregory CLEMENT wrote:
>
>>  	  This enables the driver for the NAND flash device found on
>> -	  PXA3xx processors (NFCv1) and also on Armada 370/XP (NFCv2).
>> +	  PXA3xx processors (NFCv1) and also on Armada 32bits(XP, 370, 375,
>
> missing space before parenthesis.
>
>> +	  38x, 39x) and 64bits (7K, 8K) (NFCv2).
>
> Also "Armada 32bits" isn't very good IMO, what about:
>
> 	and also on 32-bit Armada platforms (XP, 370, 375, 38x, 39x)
> 	and 64-bit Armada platforms (7K, 8K) (NFCv2).
>
> Best regards,
>
> Thomas
> -- 
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com

-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-09-29  8:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-28 14:36 [PATCH] mtd: nand: pxa3xx_nand: Update Kconfig information Gregory CLEMENT
2017-09-29  8:51 ` Thomas Petazzoni
2017-09-29  8:52   ` Gregory CLEMENT

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).