* [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support
@ 2013-10-10 5:07 Bo Shen
2013-10-10 5:07 ` [U-Boot] [PATCH 2/3] sf: change indentation in <sf_probe.c> Bo Shen
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Bo Shen @ 2013-10-10 5:07 UTC (permalink / raw)
To: u-boot
As the spi flash transfer to multiple parts, it is forgot to add
Atmel AT25DF321 spi flash support, which broken several Atmel EK
boards which this chip. So, add it
Signed-off-by: Bo Shen <voice.shen@atmel.com>
---
drivers/mtd/spi/sf_probe.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c
index 4251b1b..6e19d79 100644
--- a/drivers/mtd/spi/sf_probe.c
+++ b/drivers/mtd/spi/sf_probe.c
@@ -46,6 +46,7 @@ static const struct spi_flash_params spi_flash_params_table[] = {
{"AT45DB161D", 0x1f2600, 0x0, 64 * 1024, 32, SECT_4K},
{"AT45DB321D", 0x1f2700, 0x0, 64 * 1024, 64, SECT_4K},
{"AT45DB641D", 0x1f2800, 0x0, 64 * 1024, 128, SECT_4K},
+ {"AT25DF321", 0x1f4701, 0x0, 64 * 1024, 64, SECT_4K},
#endif
#ifdef CONFIG_SPI_FLASH_EON /* EON */
{"EN25Q32B", 0x1c3016, 0x0, 64 * 1024, 64, 0},
--
1.7.9.5
^ permalink raw reply related [flat|nested] 12+ messages in thread* [U-Boot] [PATCH 2/3] sf: change indentation in <sf_probe.c> 2013-10-10 5:07 [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support Bo Shen @ 2013-10-10 5:07 ` Bo Shen 2013-10-10 16:43 ` Jagan Teki 2013-10-10 5:07 ` [U-Boot] [PATCH 3/3] sf: using the same license header format Bo Shen [not found] ` <CAD6G_RSJbaQz4pqHwxt6Y0Z7iBm_W4DQ_MQ0zJHZGKBnDd4z=A@mail.gmail.com> 2 siblings, 1 reply; 12+ messages in thread From: Bo Shen @ 2013-10-10 5:07 UTC (permalink / raw) To: u-boot Signed-off-by: Bo Shen <voice.shen@atmel.com> --- drivers/mtd/spi/sf_probe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c index 6e19d79..9646914 100644 --- a/drivers/mtd/spi/sf_probe.c +++ b/drivers/mtd/spi/sf_probe.c @@ -25,7 +25,7 @@ DECLARE_GLOBAL_DATA_PTR; * @jedec: Device jedec ID (0x[1byte_manuf_id][2byte_dev_id]) * @ext_jedec: Device ext_jedec ID * @sector_size: Sector size of this device - * @nr_sectors: No.of sectors on this device + * @nr_sectors: No.of sectors on this device * @flags: Importent param, for flash specific behaviour */ struct spi_flash_params { -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 2/3] sf: change indentation in <sf_probe.c> 2013-10-10 5:07 ` [U-Boot] [PATCH 2/3] sf: change indentation in <sf_probe.c> Bo Shen @ 2013-10-10 16:43 ` Jagan Teki 0 siblings, 0 replies; 12+ messages in thread From: Jagan Teki @ 2013-10-10 16:43 UTC (permalink / raw) To: u-boot On Thu, Oct 10, 2013 at 10:37 AM, Bo Shen <voice.shen@atmel.com> wrote: > Signed-off-by: Bo Shen <voice.shen@atmel.com> > --- > drivers/mtd/spi/sf_probe.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c > index 6e19d79..9646914 100644 > --- a/drivers/mtd/spi/sf_probe.c > +++ b/drivers/mtd/spi/sf_probe.c > @@ -25,7 +25,7 @@ DECLARE_GLOBAL_DATA_PTR; > * @jedec: Device jedec ID (0x[1byte_manuf_id][2byte_dev_id]) > * @ext_jedec: Device ext_jedec ID > * @sector_size: Sector size of this device > - * @nr_sectors: No.of sectors on this device > + * @nr_sectors: No.of sectors on this device > * @flags: Importent param, for flash specific behaviour Added this cleanup part of some others too and sent a patch, please Ack. -- Thanks, Jagan. -------- Jagannadha Sutradharudu Teki, E: jagannadh.teki at gmail.com, P: +91-9676773388 Engineer - System Software Hacker U-boot - SPI Custodian and Zynq APSOC Ln: http://www.linkedin.com/in/jaganteki ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 3/3] sf: using the same license header format 2013-10-10 5:07 [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support Bo Shen 2013-10-10 5:07 ` [U-Boot] [PATCH 2/3] sf: change indentation in <sf_probe.c> Bo Shen @ 2013-10-10 5:07 ` Bo Shen 2013-10-10 16:42 ` Jagan Teki [not found] ` <CAD6G_RSJbaQz4pqHwxt6Y0Z7iBm_W4DQ_MQ0zJHZGKBnDd4z=A@mail.gmail.com> 2 siblings, 1 reply; 12+ messages in thread From: Bo Shen @ 2013-10-10 5:07 UTC (permalink / raw) To: u-boot Signed-off-by: Bo Shen <voice.shen@atmel.com> --- drivers/mtd/spi/sf_probe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c index 9646914..2086022 100644 --- a/drivers/mtd/spi/sf_probe.c +++ b/drivers/mtd/spi/sf_probe.c @@ -5,7 +5,7 @@ * Copyright (C) 2010 Reinhard Meyer, EMK Elektronik * Copyright (C) 2013 Jagannadha Sutradharudu Teki, Xilinx Inc. * - * Licensed under the GPL-2 or later. + * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 3/3] sf: using the same license header format 2013-10-10 5:07 ` [U-Boot] [PATCH 3/3] sf: using the same license header format Bo Shen @ 2013-10-10 16:42 ` Jagan Teki 2013-10-10 16:46 ` Tom Rini 2013-10-10 21:39 ` Wolfgang Denk 0 siblings, 2 replies; 12+ messages in thread From: Jagan Teki @ 2013-10-10 16:42 UTC (permalink / raw) To: u-boot On Thu, Oct 10, 2013 at 10:37 AM, Bo Shen <voice.shen@atmel.com> wrote: > Signed-off-by: Bo Shen <voice.shen@atmel.com> > > --- > drivers/mtd/spi/sf_probe.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c > index 9646914..2086022 100644 > --- a/drivers/mtd/spi/sf_probe.c > +++ b/drivers/mtd/spi/sf_probe.c > @@ -5,7 +5,7 @@ > * Copyright (C) 2010 Reinhard Meyer, EMK Elektronik > * Copyright (C) 2013 Jagannadha Sutradharudu Teki, Xilinx Inc. > * > - * Licensed under the GPL-2 or later. > + * SPDX-License-Identifier: GPL-2.0+ > */ I guess "Licensed under the GPL-2 or later." is not comes under SPDX. Can you please confirm. Added Wolfgang Denk and Tom - may be they will clarify. -- Thanks, Jagan. -------- Jagannadha Sutradharudu Teki, E: jagannadh.teki at gmail.com, P: +91-9676773388 Engineer - System Software Hacker U-boot - SPI Custodian and Zynq APSOC Ln: http://www.linkedin.com/in/jaganteki ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 3/3] sf: using the same license header format 2013-10-10 16:42 ` Jagan Teki @ 2013-10-10 16:46 ` Tom Rini 2013-10-10 17:13 ` Jagan Teki 2013-10-10 21:39 ` Wolfgang Denk 1 sibling, 1 reply; 12+ messages in thread From: Tom Rini @ 2013-10-10 16:46 UTC (permalink / raw) To: u-boot -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 10/10/2013 12:42 PM, Jagan Teki wrote: > On Thu, Oct 10, 2013 at 10:37 AM, Bo Shen <voice.shen@atmel.com> wrote: >> Signed-off-by: Bo Shen <voice.shen@atmel.com> >> >> --- >> drivers/mtd/spi/sf_probe.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c >> index 9646914..2086022 100644 >> --- a/drivers/mtd/spi/sf_probe.c >> +++ b/drivers/mtd/spi/sf_probe.c >> @@ -5,7 +5,7 @@ >> * Copyright (C) 2010 Reinhard Meyer, EMK Elektronik >> * Copyright (C) 2013 Jagannadha Sutradharudu Teki, Xilinx Inc. >> * >> - * Licensed under the GPL-2 or later. >> + * SPDX-License-Identifier: GPL-2.0+ >> */ > > I guess "Licensed under the GPL-2 or later." is not comes under SPDX. > Can you please confirm. > > Added Wolfgang Denk and Tom - may be they will clarify. We're using the same tag and format everywhere, so this change is correct to make. Thanks! - -- Tom -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJSVtnWAAoJENk4IS6UOR1WLUwP/A4iR/rtHb++TuHx8EVUFP/W 2Hssb2awA8w/TipKq+PjdNOVJunKqEZx3Z44RUTcWVpYNFWpsrsm8fo/Wc7JLHwd uciIG2p0fjV7TcPYUzma2rDteJMotcXpcURX9fDRjbEh3Dd8fU9uO7lDgo4WwwTL qRFs/Zh4LOJqh3gINkMO5DC4fcG4DipYd0PDgdaHWrYt/RkJ71BxvAsuM3YQIRZz J7XYcUphcIMh16TWTi5Fwz2db0PnekCe347YbrVXxtC20Yly9a633q9joYdsqzwI J0QntQ30PY4nI21ZRwUsGdW84jhBT4P1/Y/IDkC+bsfA3ih+n5VH+3k6DqK0ikit Piy3ZfSkgXcAEX1lXee3/S7SIxDzn9yu2F3Lex/cwGmBSa02ehhn2wYJwyjC1aZc 5yzC9g5tSJjR+kyMDw6qc2A6pRp08LMchRBDRS0Wz1OutPyAGnwwYHlyW4isbwwY hZFBz9yKGnSZBDYXCBu2udy/lnK69j0Oi1JLwm0GFsuwt5wkkd4Fk4P2bvdYunez oQ7Cu/v2Fkwrpzt5E8w2HqE4jO0Tpls+ciOOZcqB1Fb+nCf8IdWUWIQWcjRuzK3w HF74r1pcYdBY5b9OtKh3YinrleMVb6vkCb4l7Sgr1avyHxNXFaZJxW/m8lwX1/nD sicEfHHYlQyxdl/+71aS =BtiO -----END PGP SIGNATURE----- ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 3/3] sf: using the same license header format 2013-10-10 16:46 ` Tom Rini @ 2013-10-10 17:13 ` Jagan Teki 0 siblings, 0 replies; 12+ messages in thread From: Jagan Teki @ 2013-10-10 17:13 UTC (permalink / raw) To: u-boot On Thu, Oct 10, 2013 at 10:16 PM, Tom Rini <trini@ti.com> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 10/10/2013 12:42 PM, Jagan Teki wrote: >> On Thu, Oct 10, 2013 at 10:37 AM, Bo Shen <voice.shen@atmel.com> wrote: >>> Signed-off-by: Bo Shen <voice.shen@atmel.com> >>> >>> --- >>> drivers/mtd/spi/sf_probe.c | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c >>> index 9646914..2086022 100644 >>> --- a/drivers/mtd/spi/sf_probe.c >>> +++ b/drivers/mtd/spi/sf_probe.c >>> @@ -5,7 +5,7 @@ >>> * Copyright (C) 2010 Reinhard Meyer, EMK Elektronik >>> * Copyright (C) 2013 Jagannadha Sutradharudu Teki, Xilinx Inc. >>> * >>> - * Licensed under the GPL-2 or later. >>> + * SPDX-License-Identifier: GPL-2.0+ >>> */ >> >> I guess "Licensed under the GPL-2 or later." is not comes under SPDX. >> Can you please confirm. >> >> Added Wolfgang Denk and Tom - may be they will clarify. > > We're using the same tag and format everywhere, so this change is > correct to make. Thanks! Thanks Tom. Bo Shen, I will add this change + and respective sf files changes and send out a patch. -- Thanks, Jagan. -------- Jagannadha Sutradharudu Teki, E: jagannadh.teki at gmail.com, P: +91-9676773388 Engineer - System Software Hacker U-boot - SPI Custodian and Zynq APSOC Ln: http://www.linkedin.com/in/jaganteki ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 3/3] sf: using the same license header format 2013-10-10 16:42 ` Jagan Teki 2013-10-10 16:46 ` Tom Rini @ 2013-10-10 21:39 ` Wolfgang Denk 1 sibling, 0 replies; 12+ messages in thread From: Wolfgang Denk @ 2013-10-10 21:39 UTC (permalink / raw) To: u-boot Dear Jagan Teki, In message <CAD6G_RSBiJn4eaKco4-Gx9uKoMyhAEpWewrm91DW3Qf_he0ivw@mail.gmail.com> you wrote: > > > - * Licensed under the GPL-2 or later. > > + * SPDX-License-Identifier: GPL-2.0+ > > */ > > I guess "Licensed under the GPL-2 or later." is not comes under SPDX. > Can you please confirm. > > Added Wolfgang Denk and Tom - may be they will clarify. "GPL-2 or later" means GPL-2.0+; the suggested patch looks fine to me. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de In Nature there are neither rewards nor punishments, there are conse- quences. -- R.G. Ingersoll ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <CAD6G_RSJbaQz4pqHwxt6Y0Z7iBm_W4DQ_MQ0zJHZGKBnDd4z=A@mail.gmail.com>]
* [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support [not found] ` <CAD6G_RSJbaQz4pqHwxt6Y0Z7iBm_W4DQ_MQ0zJHZGKBnDd4z=A@mail.gmail.com> @ 2013-10-11 1:24 ` Bo Shen 2013-10-12 1:20 ` Bo Shen 0 siblings, 1 reply; 12+ messages in thread From: Bo Shen @ 2013-10-11 1:24 UTC (permalink / raw) To: u-boot Hi Jagan, On 10/10/2013 22:14, Jagan Teki wrote: > Thanks for this. > > On Thu, Oct 10, 2013 at 10:37 AM, Bo Shen <voice.shen@atmel.com> wrote: >> As the spi flash transfer to multiple parts, it is forgot to add >> Atmel AT25DF321 spi flash support, which broken several Atmel EK >> boards which this chip. So, add it >> >> Signed-off-by: Bo Shen <voice.shen@atmel.com> >> --- >> drivers/mtd/spi/sf_probe.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c >> index 4251b1b..6e19d79 100644 >> --- a/drivers/mtd/spi/sf_probe.c >> +++ b/drivers/mtd/spi/sf_probe.c >> @@ -46,6 +46,7 @@ static const struct spi_flash_params spi_flash_params_table[] = { >> {"AT45DB161D", 0x1f2600, 0x0, 64 * 1024, 32, SECT_4K}, >> {"AT45DB321D", 0x1f2700, 0x0, 64 * 1024, 64, SECT_4K}, >> {"AT45DB641D", 0x1f2800, 0x0, 64 * 1024, 128, SECT_4K}, >> + {"AT25DF321", 0x1f4701, 0x0, 64 * 1024, 64, SECT_4K}, >> #endif >> #ifdef CONFIG_SPI_FLASH_EON /* EON */ >> {"EN25Q32B", 0x1c3016, 0x0, 64 * 1024, 64, 0}, > > Did you tested Atmel flash with new probe support? Yes, tested with AT25DF321 (the missing one). It works well. For AT45 series, not tested yet, as in mainline, for AT45 series, they are using dataflash driver. I am planning to move AT45 series using SF, but too busy and this just in work queue. Best Regards, Bo Shen ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support 2013-10-11 1:24 ` [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support Bo Shen @ 2013-10-12 1:20 ` Bo Shen 2013-10-14 8:14 ` Jagan Teki 0 siblings, 1 reply; 12+ messages in thread From: Bo Shen @ 2013-10-12 1:20 UTC (permalink / raw) To: u-boot Hi Jagan, Cc Tom. On 10/11/2013 09:24, Bo Shen wrote: > Hi Jagan, > > On 10/10/2013 22:14, Jagan Teki wrote: >> Thanks for this. >> >> On Thu, Oct 10, 2013 at 10:37 AM, Bo Shen <voice.shen@atmel.com> wrote: >>> As the spi flash transfer to multiple parts, it is forgot to add >>> Atmel AT25DF321 spi flash support, which broken several Atmel EK >>> boards which this chip. So, add it >>> >>> Signed-off-by: Bo Shen <voice.shen@atmel.com> >>> --- >>> drivers/mtd/spi/sf_probe.c | 1 + >>> 1 file changed, 1 insertion(+) If this patch not applied before release at Oct 14, it will make a regression for several Atmel EK boards boot from spi flash. Would you please pick it before release? Best Regards, Bo Shen ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support 2013-10-12 1:20 ` Bo Shen @ 2013-10-14 8:14 ` Jagan Teki 2013-10-14 8:32 ` Bo Shen 0 siblings, 1 reply; 12+ messages in thread From: Jagan Teki @ 2013-10-14 8:14 UTC (permalink / raw) To: u-boot On Sat, Oct 12, 2013 at 6:50 AM, Bo Shen <voice.shen@atmel.com> wrote: > Hi Jagan, > Cc Tom. > > > On 10/11/2013 09:24, Bo Shen wrote: >> >> Hi Jagan, >> >> On 10/10/2013 22:14, Jagan Teki wrote: >>> >>> Thanks for this. >>> >>> On Thu, Oct 10, 2013 at 10:37 AM, Bo Shen <voice.shen@atmel.com> wrote: >>>> >>>> As the spi flash transfer to multiple parts, it is forgot to add >>>> Atmel AT25DF321 spi flash support, which broken several Atmel EK >>>> boards which this chip. So, add it >>>> >>>> Signed-off-by: Bo Shen <voice.shen@atmel.com> >>>> --- >>>> drivers/mtd/spi/sf_probe.c | 1 + >>>> 1 file changed, 1 insertion(+) > > > If this patch not applied before release at Oct 14, it will make a > regression for several Atmel EK boards boot from spi flash. Agreed, thanks for your concern. > > Would you please pick it before release? Yes, I will pick this. and will send one more pull request for cleanup, this should be part of. -- Thanks, Jagan. -------- Jagannadha Sutradharudu Teki, E: jagannadh.teki at gmail.com, P: +91-9676773388 Engineer - System Software Hacker U-boot - SPI Custodian and Zynq APSOC Ln: http://www.linkedin.com/in/jaganteki ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support 2013-10-14 8:14 ` Jagan Teki @ 2013-10-14 8:32 ` Bo Shen 0 siblings, 0 replies; 12+ messages in thread From: Bo Shen @ 2013-10-14 8:32 UTC (permalink / raw) To: u-boot Hi Jagan, On 10/14/2013 16:14, Jagan Teki wrote: > On Sat, Oct 12, 2013 at 6:50 AM, Bo Shen <voice.shen@atmel.com> wrote: >> Hi Jagan, >> Cc Tom. >> >> >> On 10/11/2013 09:24, Bo Shen wrote: >>> >>> Hi Jagan, >>> >>> On 10/10/2013 22:14, Jagan Teki wrote: >>>> >>>> Thanks for this. >>>> >>>> On Thu, Oct 10, 2013 at 10:37 AM, Bo Shen <voice.shen@atmel.com> wrote: >>>>> >>>>> As the spi flash transfer to multiple parts, it is forgot to add >>>>> Atmel AT25DF321 spi flash support, which broken several Atmel EK >>>>> boards which this chip. So, add it >>>>> >>>>> Signed-off-by: Bo Shen <voice.shen@atmel.com> >>>>> --- >>>>> drivers/mtd/spi/sf_probe.c | 1 + >>>>> 1 file changed, 1 insertion(+) >> >> >> If this patch not applied before release at Oct 14, it will make a >> regression for several Atmel EK boards boot from spi flash. > Agreed, thanks for your concern. > >> >> Would you please pick it before release? > Yes, I will pick this. > and will send one more pull request for cleanup, this should be part of. Thanks. Best Regards, Bo Shen ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-10-14 8:32 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-10 5:07 [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support Bo Shen
2013-10-10 5:07 ` [U-Boot] [PATCH 2/3] sf: change indentation in <sf_probe.c> Bo Shen
2013-10-10 16:43 ` Jagan Teki
2013-10-10 5:07 ` [U-Boot] [PATCH 3/3] sf: using the same license header format Bo Shen
2013-10-10 16:42 ` Jagan Teki
2013-10-10 16:46 ` Tom Rini
2013-10-10 17:13 ` Jagan Teki
2013-10-10 21:39 ` Wolfgang Denk
[not found] ` <CAD6G_RSJbaQz4pqHwxt6Y0Z7iBm_W4DQ_MQ0zJHZGKBnDd4z=A@mail.gmail.com>
2013-10-11 1:24 ` [U-Boot] [PATCH 1/3] sf: add missing Atmel at25df321 spi flash support Bo Shen
2013-10-12 1:20 ` Bo Shen
2013-10-14 8:14 ` Jagan Teki
2013-10-14 8:32 ` Bo Shen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox