public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] ppc/85xx: Added CONFIG_MAX_CPUS for P1020
@ 2009-08-20 13:25 Poonam Aggrwal
  2009-08-20 14:44 ` Kumar Gala
  2009-08-20 15:08 ` Wolfgang Denk
  0 siblings, 2 replies; 4+ messages in thread
From: Poonam Aggrwal @ 2009-08-20 13:25 UTC (permalink / raw)
  To: u-boot


Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
applies on http://git.denx.de/u-boot-mpc85xx.git branch->next
 include/asm-ppc/config.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/asm-ppc/config.h b/include/asm-ppc/config.h
index fd7961c..fb9c20e 100644
--- a/include/asm-ppc/config.h
+++ b/include/asm-ppc/config.h
@@ -38,8 +38,8 @@
 #endif
 #endif
 
-#if defined(CONFIG_MPC8572) || defined(CONFIG_P2020) \
-	|| defined(CONFIG_MPC8641)
+#if defined(CONFIG_MPC8572) || defined(CONFIG_P2020) || \
+	defined(CONFIG_P1020) || defined(CONFIG_MPC8641)
 #define CONFIG_MAX_CPUS        2
 #else
 #define CONFIG_MAX_CPUS        1
-- 
1.5.6.5

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

* [U-Boot] [PATCH] ppc/85xx: Added CONFIG_MAX_CPUS for P1020
  2009-08-20 13:25 [U-Boot] [PATCH] ppc/85xx: Added CONFIG_MAX_CPUS for P1020 Poonam Aggrwal
@ 2009-08-20 14:44 ` Kumar Gala
  2009-08-20 15:08   ` Wolfgang Denk
  2009-08-20 15:08 ` Wolfgang Denk
  1 sibling, 1 reply; 4+ messages in thread
From: Kumar Gala @ 2009-08-20 14:44 UTC (permalink / raw)
  To: u-boot


On Aug 20, 2009, at 8:25 AM, Poonam Aggrwal wrote:

>
> Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
> ---
> applies on http://git.denx.de/u-boot-mpc85xx.git branch->next
> include/asm-ppc/config.h |    4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)


On Aug 18, 2009, at 2:37 AM, Mingkai Hu wrote:

> Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
> ---
> cpu/mpc85xx/cpu_init.c       |    5 +++--
> include/asm-ppc/immap_85xx.h |    5 +++++
> 2 files changed, 8 insertions(+), 2 deletions(-)


applied to 85xx next

- k

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

* [U-Boot] [PATCH] ppc/85xx: Added CONFIG_MAX_CPUS for P1020
  2009-08-20 13:25 [U-Boot] [PATCH] ppc/85xx: Added CONFIG_MAX_CPUS for P1020 Poonam Aggrwal
  2009-08-20 14:44 ` Kumar Gala
@ 2009-08-20 15:08 ` Wolfgang Denk
  1 sibling, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2009-08-20 15:08 UTC (permalink / raw)
  To: u-boot

Dear Poonam Aggrwal,

In message <1250774735-20130-1-git-send-email-poonam.aggrwal@freescale.com> you wrote:
> 
> Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
> ---
> applies on http://git.denx.de/u-boot-mpc85xx.git branch->next
>  include/asm-ppc/config.h |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/include/asm-ppc/config.h b/include/asm-ppc/config.h
> index fd7961c..fb9c20e 100644
> --- a/include/asm-ppc/config.h
> +++ b/include/asm-ppc/config.h
> @@ -38,8 +38,8 @@
>  #endif
>  #endif
>  
> -#if defined(CONFIG_MPC8572) || defined(CONFIG_P2020) \
> -	|| defined(CONFIG_MPC8641)
> +#if defined(CONFIG_MPC8572) || defined(CONFIG_P2020) || \
> +	defined(CONFIG_P1020) || defined(CONFIG_MPC8641)

Please keep the list sorted. Thanks.

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
Gods don't like people not doing much work. People  who  aren't  busy
all the time might start to _think_.  - Terry Pratchett, _Small Gods_

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

* [U-Boot] [PATCH] ppc/85xx: Added CONFIG_MAX_CPUS for P1020
  2009-08-20 14:44 ` Kumar Gala
@ 2009-08-20 15:08   ` Wolfgang Denk
  0 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2009-08-20 15:08 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <FCDB5298-302A-4FF8-B528-0DA78A7D64E1@kernel.crashing.org> you wrote:
> 
> On Aug 20, 2009, at 8:25 AM, Poonam Aggrwal wrote:
> 
> >
> > Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
> > Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
> > ---
> > applies on http://git.denx.de/u-boot-mpc85xx.git branch->next
> > include/asm-ppc/config.h |    4 ++--
> > 1 files changed, 2 insertions(+), 2 deletions(-)
> 
> 
> On Aug 18, 2009, at 2:37 AM, Mingkai Hu wrote:
> 
> > Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
> > ---
> > cpu/mpc85xx/cpu_init.c       |    5 +++--
> > include/asm-ppc/immap_85xx.h |    5 +++++
> > 2 files changed, 8 insertions(+), 2 deletions(-)
> 
> 
> applied to 85xx next

Not so fast, please. Please undo.

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
You don't have to stay up nights to succeed; you have to  stay  awake
days.

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

end of thread, other threads:[~2009-08-20 15:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-20 13:25 [U-Boot] [PATCH] ppc/85xx: Added CONFIG_MAX_CPUS for P1020 Poonam Aggrwal
2009-08-20 14:44 ` Kumar Gala
2009-08-20 15:08   ` Wolfgang Denk
2009-08-20 15:08 ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox