linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mtd: m25p80: add Macronix mx66l1g55g 1Gbit SPI flash
@ 2014-01-29 21:43 Brian Norris
  2014-02-01  1:35 ` Marek Vasut
  0 siblings, 1 reply; 3+ messages in thread
From: Brian Norris @ 2014-01-29 21:43 UTC (permalink / raw)
  To: linux-mtd; +Cc: Marek Vasut, Brian Norris

Signed-off-by: Brian Norris <computersforpeace@gmail.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 1e147a849c35..5124b649d68c 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -940,6 +940,7 @@ static const struct spi_device_id m25p_ids[] = {
 	{ "mx25l25635e", INFO(0xc22019, 0, 64 * 1024, 512, 0) },
 	{ "mx25l25655e", INFO(0xc22619, 0, 64 * 1024, 512, 0) },
 	{ "mx66l51235l", INFO(0xc2201a, 0, 64 * 1024, 1024, M25P80_QUAD_READ) },
+	{ "mx66l1g55g",  INFO(0xc2261b, 0, 64 * 1024, 2048, M25P80_QUAD_READ) },
 
 	/* Micron */
 	{ "n25q064",     INFO(0x20ba17, 0, 64 * 1024,  128, 0) },
-- 
1.8.3.2

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

* Re: [PATCH] mtd: m25p80: add Macronix mx66l1g55g 1Gbit SPI flash
  2014-01-29 21:43 [PATCH] mtd: m25p80: add Macronix mx66l1g55g 1Gbit SPI flash Brian Norris
@ 2014-02-01  1:35 ` Marek Vasut
  2014-03-06 20:44   ` Brian Norris
  0 siblings, 1 reply; 3+ messages in thread
From: Marek Vasut @ 2014-02-01  1:35 UTC (permalink / raw)
  To: Brian Norris; +Cc: linux-mtd

On Wednesday, January 29, 2014 at 10:43:46 PM, Brian Norris wrote:
> Signed-off-by: Brian Norris <computersforpeace@gmail.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 1e147a849c35..5124b649d68c 100644
> --- a/drivers/mtd/devices/m25p80.c
> +++ b/drivers/mtd/devices/m25p80.c
> @@ -940,6 +940,7 @@ static const struct spi_device_id m25p_ids[] = {
>  	{ "mx25l25635e", INFO(0xc22019, 0, 64 * 1024, 512, 0) },
>  	{ "mx25l25655e", INFO(0xc22619, 0, 64 * 1024, 512, 0) },
>  	{ "mx66l51235l", INFO(0xc2201a, 0, 64 * 1024, 1024, M25P80_QUAD_READ) },
> +	{ "mx66l1g55g",  INFO(0xc2261b, 0, 64 * 1024, 2048, M25P80_QUAD_READ) },

Well it does make sense, doesn't it ? :)

Acked-by: Marek Vasut <marex@denx.de>

Best regards,
Marek Vasut

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

* Re: [PATCH] mtd: m25p80: add Macronix mx66l1g55g 1Gbit SPI flash
  2014-02-01  1:35 ` Marek Vasut
@ 2014-03-06 20:44   ` Brian Norris
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Norris @ 2014-03-06 20:44 UTC (permalink / raw)
  To: Marek Vasut; +Cc: linux-mtd

On Sat, Feb 01, 2014 at 02:35:27AM +0100, Marek Vasut wrote:
> On Wednesday, January 29, 2014 at 10:43:46 PM, Brian Norris wrote:
> > Signed-off-by: Brian Norris <computersforpeace@gmail.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 1e147a849c35..5124b649d68c 100644
> > --- a/drivers/mtd/devices/m25p80.c
> > +++ b/drivers/mtd/devices/m25p80.c
> > @@ -940,6 +940,7 @@ static const struct spi_device_id m25p_ids[] = {
> >  	{ "mx25l25635e", INFO(0xc22019, 0, 64 * 1024, 512, 0) },
> >  	{ "mx25l25655e", INFO(0xc22619, 0, 64 * 1024, 512, 0) },
> >  	{ "mx66l51235l", INFO(0xc2201a, 0, 64 * 1024, 1024, M25P80_QUAD_READ) },
> > +	{ "mx66l1g55g",  INFO(0xc2261b, 0, 64 * 1024, 2048, M25P80_QUAD_READ) },
> 
> Well it does make sense, doesn't it ? :)
> 
> Acked-by: Marek Vasut <marex@denx.de>

Pushed to l2-mtd.git.

Brian

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

end of thread, other threads:[~2014-03-06 20:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-29 21:43 [PATCH] mtd: m25p80: add Macronix mx66l1g55g 1Gbit SPI flash Brian Norris
2014-02-01  1:35 ` Marek Vasut
2014-03-06 20:44   ` Brian Norris

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