* [U-Boot] [PATCH] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too
@ 2011-02-11 14:30 Steffen Sledz
2011-02-21 8:30 ` Steffen Sledz
2011-02-21 12:13 ` [U-Boot] [PATCH v2] " Mario Schuknecht
0 siblings, 2 replies; 6+ messages in thread
From: Steffen Sledz @ 2011-02-11 14:30 UTC (permalink / raw)
To: u-boot
Signed-off-by: Mario Schuknecht <m.schuknecht@dresearch.de>
Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
drivers/mtd/cfi_flash.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
index dd394a8..527a3a5 100644
--- a/drivers/mtd/cfi_flash.c
+++ b/drivers/mtd/cfi_flash.c
@@ -1924,7 +1924,8 @@ ulong flash_get_size (phys_addr_t base, int banknum)
/* Do manufacturer-specific fixups */
switch (info->manufacturer_id) {
- case 0x0001:
+ case 0x0001: /* AMD */
+ case 0x0037: /* AMIC */
flash_fixup_amd(info, &qry);
break;
case 0x001f:
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too
2011-02-11 14:30 [U-Boot] [PATCH] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too Steffen Sledz
@ 2011-02-21 8:30 ` Steffen Sledz
2011-02-21 10:14 ` Stefan Roese
2011-02-21 12:13 ` [U-Boot] [PATCH v2] " Mario Schuknecht
1 sibling, 1 reply; 6+ messages in thread
From: Steffen Sledz @ 2011-02-21 8:30 UTC (permalink / raw)
To: u-boot
Am 11.02.2011 15:30, schrieb Steffen Sledz:
> Signed-off-by: Mario Schuknecht <m.schuknecht@dresearch.de>
> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
> ---
> drivers/mtd/cfi_flash.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
> index dd394a8..527a3a5 100644
> --- a/drivers/mtd/cfi_flash.c
> +++ b/drivers/mtd/cfi_flash.c
> @@ -1924,7 +1924,8 @@ ulong flash_get_size (phys_addr_t base, int banknum)
>
> /* Do manufacturer-specific fixups */
> switch (info->manufacturer_id) {
> - case 0x0001:
> + case 0x0001: /* AMD */
> + case 0x0037: /* AMIC */
> flash_fixup_amd(info, &qry);
> break;
> case 0x001f:
Ping!
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz at DResearch.de
Fax: +49 30 515932-299
Gesch?ftsf?hrer: Dr. Michael Weber, Werner M?gle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too
2011-02-21 8:30 ` Steffen Sledz
@ 2011-02-21 10:14 ` Stefan Roese
2011-02-21 12:12 ` Steffen Sledz
0 siblings, 1 reply; 6+ messages in thread
From: Stefan Roese @ 2011-02-21 10:14 UTC (permalink / raw)
To: u-boot
Hi Steffen,
On Monday 21 February 2011 09:30:35 Steffen Sledz wrote:
> Am 11.02.2011 15:30, schrieb Steffen Sledz:
> > Signed-off-by: Mario Schuknecht <m.schuknecht@dresearch.de>
> > Signed-off-by: Steffen Sledz <sledz@dresearch.de>
> > ---
> >
> > drivers/mtd/cfi_flash.c | 3 ++-
> > 1 files changed, 2 insertions(+), 1 deletions(-)
> >
> > diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
> > index dd394a8..527a3a5 100644
> > --- a/drivers/mtd/cfi_flash.c
> > +++ b/drivers/mtd/cfi_flash.c
> > @@ -1924,7 +1924,8 @@ ulong flash_get_size (phys_addr_t base, int
> > banknum)
> >
> > /* Do manufacturer-specific fixups */
> > switch (info->manufacturer_id) {
> >
> > - case 0x0001:
> > + case 0x0001: /* AMD */
> > + case 0x0037: /* AMIC */
> >
> > flash_fixup_amd(info, &qry);
> > break;
> >
> > case 0x001f:
> Ping!
This patch is not really a bug-fix. So I have it queued for the upcoming
"next" branch (will open with -rc2).
But I do have a small question about the patch: Who is the author of this
patch? You (Steffen) or Mario? If its Mario, then you should add a "From:
Mario Schuknecht <m.schuknecht@dresearch.de>" line at the beginning of the
mail body. If its yourself, then you should switch the Signed-off-by lines
(author should be the first here).
Cheers,
Stefan
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-0 Fax: (+49)-8142-66989-80 Email: office at denx.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too
2011-02-21 10:14 ` Stefan Roese
@ 2011-02-21 12:12 ` Steffen Sledz
0 siblings, 0 replies; 6+ messages in thread
From: Steffen Sledz @ 2011-02-21 12:12 UTC (permalink / raw)
To: u-boot
Am 21.02.2011 11:14, schrieb Stefan Roese:
> Hi Steffen,
>
> On Monday 21 February 2011 09:30:35 Steffen Sledz wrote:
>> Am 11.02.2011 15:30, schrieb Steffen Sledz:
>>> Signed-off-by: Mario Schuknecht <m.schuknecht@dresearch.de>
>>> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
>>> ...
>> Ping!
>
> This patch is not really a bug-fix. So I have it queued for the upcoming
> "next" branch (will open with -rc2).
OK, no problem.
> But I do have a small question about the patch: Who is the author of this
> patch? You (Steffen) or Mario? If its Mario, then you should add a "From:
> Mario Schuknecht <m.schuknecht@dresearch.de>" line at the beginning of the
> mail body. If its yourself, then you should switch the Signed-off-by lines
> (author should be the first here).
Mario is the main author. I'll send an update to the patch.
Steffen
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz at DResearch.de
Fax: +49 30 515932-299
Gesch?ftsf?hrer: Dr. Michael Weber, Werner M?gle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v2] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too
2011-02-11 14:30 [U-Boot] [PATCH] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too Steffen Sledz
2011-02-21 8:30 ` Steffen Sledz
@ 2011-02-21 12:13 ` Mario Schuknecht
2011-04-07 8:21 ` Stefan Roese
1 sibling, 1 reply; 6+ messages in thread
From: Mario Schuknecht @ 2011-02-21 12:13 UTC (permalink / raw)
To: u-boot
Signed-off-by: Mario Schuknecht <m.schuknecht@dresearch.de>
Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
drivers/mtd/cfi_flash.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
index dd394a8..527a3a5 100644
--- a/drivers/mtd/cfi_flash.c
+++ b/drivers/mtd/cfi_flash.c
@@ -1924,7 +1924,8 @@ ulong flash_get_size (phys_addr_t base, int banknum)
/* Do manufacturer-specific fixups */
switch (info->manufacturer_id) {
- case 0x0001:
+ case 0x0001: /* AMD */
+ case 0x0037: /* AMIC */
flash_fixup_amd(info, &qry);
break;
case 0x001f:
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v2] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too
2011-02-21 12:13 ` [U-Boot] [PATCH v2] " Mario Schuknecht
@ 2011-04-07 8:21 ` Stefan Roese
0 siblings, 0 replies; 6+ messages in thread
From: Stefan Roese @ 2011-04-07 8:21 UTC (permalink / raw)
To: u-boot
On Monday 21 February 2011 13:13:14 Mario Schuknecht wrote:
> Signed-off-by: Mario Schuknecht <m.schuknecht@dresearch.de>
> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
Applied to u-boot-cfi-flash. Thanks.
Cheers,
Stefan
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-0 Fax: (+49)-8142-66989-80 Email: office at denx.de
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-04-07 8:21 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-11 14:30 [U-Boot] [PATCH] cfi_flash: use AMD fixups for AMIC (e.g. A29L160A series) too Steffen Sledz
2011-02-21 8:30 ` Steffen Sledz
2011-02-21 10:14 ` Stefan Roese
2011-02-21 12:12 ` Steffen Sledz
2011-02-21 12:13 ` [U-Boot] [PATCH v2] " Mario Schuknecht
2011-04-07 8:21 ` Stefan Roese
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox