All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd/spi: support en25s64 device
@ 2014-05-23  7:29 Shengzhou Liu
  2014-05-28  8:59 ` Brian Norris
  0 siblings, 1 reply; 6+ messages in thread
From: Shengzhou Liu @ 2014-05-23  7:29 UTC (permalink / raw)
  To: linux-mtd; +Cc: Shengzhou Liu

Add support for EON en25s64 spi device.

Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
---
 drivers/mtd/devices/m25p80.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 7eda71d..6989311 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -745,6 +745,7 @@ static const struct spi_device_id m25p_ids[] = {
 	{ "en25q32b",   INFO(0x1c3016, 0, 64 * 1024,   64, 0) },
 	{ "en25p64",    INFO(0x1c2017, 0, 64 * 1024,  128, 0) },
 	{ "en25q64",    INFO(0x1c3017, 0, 64 * 1024,  128, SECT_4K) },
+	{ "en25s64",    INFO(0x1c3817, 0, 64 * 1024,  128, 0) },
 	{ "en25qh256",  INFO(0x1c7019, 0, 64 * 1024,  512, 0) },
 
 	/* ESMT */
-- 
1.8.0

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

* Re: [PATCH] mtd/spi: support en25s64 device
  2014-05-23  7:29 [PATCH] mtd/spi: support en25s64 device Shengzhou Liu
@ 2014-05-28  8:59 ` Brian Norris
  0 siblings, 0 replies; 6+ messages in thread
From: Brian Norris @ 2014-05-28  8:59 UTC (permalink / raw)
  To: Shengzhou Liu; +Cc: linux-mtd

On Fri, May 23, 2014 at 03:29:10PM +0800, Shengzhou Liu wrote:
> Add support for EON en25s64 spi device.
> 
> Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
> ---
>  drivers/mtd/devices/m25p80.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
> index 7eda71d..6989311 100644
> --- a/drivers/mtd/devices/m25p80.c
> +++ b/drivers/mtd/devices/m25p80.c
> @@ -745,6 +745,7 @@ static const struct spi_device_id m25p_ids[] = {
>  	{ "en25q32b",   INFO(0x1c3016, 0, 64 * 1024,   64, 0) },
>  	{ "en25p64",    INFO(0x1c2017, 0, 64 * 1024,  128, 0) },
>  	{ "en25q64",    INFO(0x1c3017, 0, 64 * 1024,  128, SECT_4K) },
> +	{ "en25s64",    INFO(0x1c3817, 0, 64 * 1024,  128, 0) },
>  	{ "en25qh256",  INFO(0x1c7019, 0, 64 * 1024,  512, 0) },
>  
>  	/* ESMT */

Please rebase on l2-mtd.git, found in linux-next and at:

http://git.infradead.org/l2-mtd.git

Thanks,
Brian

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

* Re: [PATCH] mtd/spi: support en25s64 device
  2015-03-27  9:38 Shengzhou Liu
  2015-03-27 16:34 ` Mark Brown
@ 2015-04-06  2:08 ` Brian Norris
  1 sibling, 0 replies; 6+ messages in thread
From: Brian Norris @ 2015-04-06  2:08 UTC (permalink / raw)
  To: Shengzhou Liu; +Cc: linux-mtd

On Fri, Mar 27, 2015 at 05:38:30PM +0800, Shengzhou Liu wrote:
> Add support for EON en25s64 spi device.
> 
> Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
> ---
>  drivers/mtd/spi-nor/spi-nor.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
> index 0f8ec3c..f8acef7 100644
> --- a/drivers/mtd/spi-nor/spi-nor.c
> +++ b/drivers/mtd/spi-nor/spi-nor.c
> @@ -524,6 +524,7 @@ static const struct spi_device_id spi_nor_ids[] = {
>  	{ "en25q64",    INFO(0x1c3017, 0, 64 * 1024,  128, SECT_4K) },
>  	{ "en25qh128",  INFO(0x1c7018, 0, 64 * 1024,  256, 0) },
>  	{ "en25qh256",  INFO(0x1c7019, 0, 64 * 1024,  512, 0) },
> +	{ "en25s64",	INFO(0x1c3817, 0, 64 * 1024,  128, 0) },
>  
>  	/* ESMT */
>  	{ "f25l32pa", INFO(0x8c2016, 0, 64 * 1024, 64, SECT_4K) },

Fixed up the subject (to "spi-nor" not "spi") and pushed to l2-mtd.git.

Brian

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

* Re: [PATCH] mtd/spi: support en25s64 device
  2015-03-27 16:34 ` Mark Brown
@ 2015-03-27 17:11   ` Brian Norris
  0 siblings, 0 replies; 6+ messages in thread
From: Brian Norris @ 2015-03-27 17:11 UTC (permalink / raw)
  To: Mark Brown; +Cc: scottwood, linux-mtd, Shengzhou Liu

(remove linux-ppc)

On Fri, Mar 27, 2015 at 09:34:50AM -0700, Mark Brown wrote:
> On Fri, Mar 27, 2015 at 05:38:30PM +0800, Shengzhou Liu wrote:
> > Add support for EON en25s64 spi device.
> > 
> > Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
> > ---
> >  drivers/mtd/spi-nor/spi-nor.c | 1 +
> >  1 file changed, 1 insertion(+)
> 
> This is a MTD driver, not a SPI driver - you need to send your patch to
> the MTD maintainers not me.

I'll take care of it.

Brian

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

* Re: [PATCH] mtd/spi: support en25s64 device
  2015-03-27  9:38 Shengzhou Liu
@ 2015-03-27 16:34 ` Mark Brown
  2015-03-27 17:11   ` Brian Norris
  2015-04-06  2:08 ` Brian Norris
  1 sibling, 1 reply; 6+ messages in thread
From: Mark Brown @ 2015-03-27 16:34 UTC (permalink / raw)
  To: Shengzhou Liu; +Cc: scottwood, linuxppc-dev, linux-mtd

[-- Attachment #1: Type: text/plain, Size: 359 bytes --]

On Fri, Mar 27, 2015 at 05:38:30PM +0800, Shengzhou Liu wrote:
> Add support for EON en25s64 spi device.
> 
> Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
> ---
>  drivers/mtd/spi-nor/spi-nor.c | 1 +
>  1 file changed, 1 insertion(+)

This is a MTD driver, not a SPI driver - you need to send your patch to
the MTD maintainers not me.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* [PATCH] mtd/spi: support en25s64 device
@ 2015-03-27  9:38 Shengzhou Liu
  2015-03-27 16:34 ` Mark Brown
  2015-04-06  2:08 ` Brian Norris
  0 siblings, 2 replies; 6+ messages in thread
From: Shengzhou Liu @ 2015-03-27  9:38 UTC (permalink / raw)
  To: linux-mtd, linuxppc-dev, broonie; +Cc: scottwood, Shengzhou Liu

Add support for EON en25s64 spi device.

Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
---
 drivers/mtd/spi-nor/spi-nor.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index 0f8ec3c..f8acef7 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -524,6 +524,7 @@ static const struct spi_device_id spi_nor_ids[] = {
 	{ "en25q64",    INFO(0x1c3017, 0, 64 * 1024,  128, SECT_4K) },
 	{ "en25qh128",  INFO(0x1c7018, 0, 64 * 1024,  256, 0) },
 	{ "en25qh256",  INFO(0x1c7019, 0, 64 * 1024,  512, 0) },
+	{ "en25s64",	INFO(0x1c3817, 0, 64 * 1024,  128, 0) },
 
 	/* ESMT */
 	{ "f25l32pa", INFO(0x8c2016, 0, 64 * 1024, 64, SECT_4K) },
-- 
2.1.0.27.g96db324

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

end of thread, other threads:[~2015-04-06  2:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-23  7:29 [PATCH] mtd/spi: support en25s64 device Shengzhou Liu
2014-05-28  8:59 ` Brian Norris
2015-03-27  9:38 Shengzhou Liu
2015-03-27 16:34 ` Mark Brown
2015-03-27 17:11   ` Brian Norris
2015-04-06  2:08 ` Brian Norris

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.