* [PATCH] mtd: spi-nor: support for (GigaDevice) GD25Q128B
@ 2014-12-16 21:46 Rafał Miłecki
2015-01-19 15:18 ` Rafał Miłecki
2015-01-20 20:25 ` Brian Norris
0 siblings, 2 replies; 3+ messages in thread
From: Rafał Miłecki @ 2014-12-16 21:46 UTC (permalink / raw)
To: David Woodhouse, Artem Bityutskiy, Brian Norris, linux-mtd
Cc: Hauke Mehrtens, Rafał Miłecki
Signed-off-by: Rafał Miłecki <zajec5@gmail.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..ebcc97a 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -538,6 +538,7 @@ static const struct spi_device_id spi_nor_ids[] = {
/* GigaDevice */
{ "gd25q32", INFO(0xc84016, 0, 64 * 1024, 64, SECT_4K) },
{ "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },
+ { "gd25q128", INFO(0xc84018, 0, 64 * 1024, 256, SECT_4K) },
/* Intel/Numonyx -- xxxs33b */
{ "160s33b", INFO(0x898911, 0, 64 * 1024, 32, 0) },
--
1.8.4.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mtd: spi-nor: support for (GigaDevice) GD25Q128B
2014-12-16 21:46 [PATCH] mtd: spi-nor: support for (GigaDevice) GD25Q128B Rafał Miłecki
@ 2015-01-19 15:18 ` Rafał Miłecki
2015-01-20 20:25 ` Brian Norris
1 sibling, 0 replies; 3+ messages in thread
From: Rafał Miłecki @ 2015-01-19 15:18 UTC (permalink / raw)
To: David Woodhouse, Artem Bityutskiy, Brian Norris,
linux-mtd@lists.infradead.org
Cc: Hauke Mehrtens, Rafał Miłecki
On 16 December 2014 at 22:46, Rafał Miłecki <zajec5@gmail.com> wrote:
> Signed-off-by: Rafał Miłecki <zajec5@gmail.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..ebcc97a 100644
> --- a/drivers/mtd/spi-nor/spi-nor.c
> +++ b/drivers/mtd/spi-nor/spi-nor.c
> @@ -538,6 +538,7 @@ static const struct spi_device_id spi_nor_ids[] = {
> /* GigaDevice */
> { "gd25q32", INFO(0xc84016, 0, 64 * 1024, 64, SECT_4K) },
> { "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },
> + { "gd25q128", INFO(0xc84018, 0, 64 * 1024, 256, SECT_4K) },
>
> /* Intel/Numonyx -- xxxs33b */
> { "160s33b", INFO(0x898911, 0, 64 * 1024, 32, 0) },
> --
> 1.8.4.5
Hey Brian,
Could I bring a bit of your attention to this trivial patch, please? :)
--
Rafał
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mtd: spi-nor: support for (GigaDevice) GD25Q128B
2014-12-16 21:46 [PATCH] mtd: spi-nor: support for (GigaDevice) GD25Q128B Rafał Miłecki
2015-01-19 15:18 ` Rafał Miłecki
@ 2015-01-20 20:25 ` Brian Norris
1 sibling, 0 replies; 3+ messages in thread
From: Brian Norris @ 2015-01-20 20:25 UTC (permalink / raw)
To: Rafał Miłecki
Cc: Hauke Mehrtens, linux-mtd, David Woodhouse, Artem Bityutskiy
On Tue, Dec 16, 2014 at 10:46:56PM +0100, Rafał Miłecki wrote:
> Signed-off-by: Rafał Miłecki <zajec5@gmail.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..ebcc97a 100644
> --- a/drivers/mtd/spi-nor/spi-nor.c
> +++ b/drivers/mtd/spi-nor/spi-nor.c
> @@ -538,6 +538,7 @@ static const struct spi_device_id spi_nor_ids[] = {
> /* GigaDevice */
> { "gd25q32", INFO(0xc84016, 0, 64 * 1024, 64, SECT_4K) },
> { "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },
> + { "gd25q128", INFO(0xc84018, 0, 64 * 1024, 256, SECT_4K) },
^^ Replaced a tab with a space, and pushed to l2-mtd.git.
Brian
>
> /* Intel/Numonyx -- xxxs33b */
> { "160s33b", INFO(0x898911, 0, 64 * 1024, 32, 0) },
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-20 20:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-16 21:46 [PATCH] mtd: spi-nor: support for (GigaDevice) GD25Q128B Rafał Miłecki
2015-01-19 15:18 ` Rafał Miłecki
2015-01-20 20:25 ` Brian Norris
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox