public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.
@ 2009-09-08 15:26 Marcel Ziswiler
  2009-09-08 18:41 ` Wolfgang Denk
  2009-09-09 19:18 ` [U-Boot] [PATCH][v2] " Marcel Ziswiler
  0 siblings, 2 replies; 10+ messages in thread
From: Marcel Ziswiler @ 2009-09-08 15:26 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
---
 README                        |    6 ++++--
 include/configs/IDS8247.h     |    2 --
 include/configs/MPC8260ADS.h  |    1 -
 include/configs/linkstation.h |    2 --
 include/configs/mgcoge.h      |    2 --
 include/configs/mpc7448hpc2.h |    1 -
 include/configs/muas3001.h    |    2 --
 include/configs/stxxtc.h      |    1 -
 8 files changed, 4 insertions(+), 13 deletions(-)

diff --git a/README b/README
index ff4ed8b..3cb7786 100644
--- a/README
+++ b/README
@@ -368,8 +368,10 @@ The following options need to be configured:
 		 * Adds the "fdt" command
 		 * The bootm command automatically updates the fdt
 
-		OF_CPU - The proper name of the cpus node.
-		OF_SOC - The proper name of the soc node.
+		OF_CPU - The proper name of the cpus node (only required for
+			MPC512X and MPC5xxx based boards).
+		OF_SOC - The proper name of the soc node (only required for
+			MPC512X and MPC5xxx based boards).
 		OF_TBCLK - The timebase frequency.
 		OF_STDOUT_PATH - The path to the console device
 
diff --git a/include/configs/IDS8247.h b/include/configs/IDS8247.h
index 4c4af05..147a8b2 100644
--- a/include/configs/IDS8247.h
+++ b/include/configs/IDS8247.h
@@ -125,8 +125,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 
-#define OF_CPU	"PowerPC,8247 at 0"
-#define OF_SOC	"soc at f0000000"
 #define OF_TBCLK	(bd->bi_busfreq / 4)
 #define OF_STDOUT_PATH	"/soc at f0000000/serial8250 at e0008000"
 
diff --git a/include/configs/MPC8260ADS.h b/include/configs/MPC8260ADS.h
index 942a4cc..677a143 100644
--- a/include/configs/MPC8260ADS.h
+++ b/include/configs/MPC8260ADS.h
@@ -209,7 +209,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 #if defined(CONFIG_OF_LIBFDT)
-#define OF_CPU			"cpu at 0"
 #define OF_TBCLK		(bd->bi_busfreq / 4)
 #endif
 
diff --git a/include/configs/linkstation.h
b/include/configs/linkstation.h
index 2feb3ae..16b464c 100644
--- a/include/configs/linkstation.h
+++ b/include/configs/linkstation.h
@@ -96,8 +96,6 @@
 
 #define CONFIG_OF_LIBFDT	1
 
-#define OF_CPU			"PowerPC,603e"
-#define OF_SOC			"soc10x at 80000000"
 #define OF_STDOUT_PATH		"/soc10x/serial at 80004600"
 
 /* this must be included AFTER the definition of CONFIG_COMMANDS (if
any) */
diff --git a/include/configs/mgcoge.h b/include/configs/mgcoge.h
index ea14948..99ac8c1 100644
--- a/include/configs/mgcoge.h
+++ b/include/configs/mgcoge.h
@@ -346,8 +346,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 
-#define OF_CPU			"PowerPC,8247 at 0"
-#define OF_SOC			"soc at f0000000"
 #define OF_TBCLK		(bd->bi_busfreq / 4)
 #define OF_STDOUT_PATH		"/soc/cpm/serial at 11a90"
 
diff --git a/include/configs/mpc7448hpc2.h
b/include/configs/mpc7448hpc2.h
index 4f98ba4..be12186 100644
--- a/include/configs/mpc7448hpc2.h
+++ b/include/configs/mpc7448hpc2.h
@@ -79,7 +79,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 
-#define OF_CPU			"PowerPC,7448 at 0"
 #define OF_TSI			"tsi108 at c0000000"
 #define OF_TBCLK		(bd->bi_busfreq / 8)
 #define OF_STDOUT_PATH		"/tsi108 at c0000000/serial at 7808"
diff --git a/include/configs/muas3001.h b/include/configs/muas3001.h
index f031a17..f2d117c 100644
--- a/include/configs/muas3001.h
+++ b/include/configs/muas3001.h
@@ -404,8 +404,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 
-#define OF_CPU			"PowerPC,8270 at 0"
-#define OF_SOC			"soc at f0000000"
 #define OF_TBCLK		(bd->bi_busfreq / 4)
 #if defined(CONFIG_MUAS_DEV_BOARD)
 #define OF_STDOUT_PATH		"/soc/cpm/serial at 11a90"
diff --git a/include/configs/stxxtc.h b/include/configs/stxxtc.h
index d16262b..5854366 100644
--- a/include/configs/stxxtc.h
+++ b/include/configs/stxxtc.h
@@ -509,7 +509,6 @@ typedef unsigned int led_id_t;
 /* pass open firmware flattened device tree */
 #define CONFIG_OF_LIBFDT	1
 
-#define OF_CPU			"PowerPC,MPC870 at 0"
 #define OF_TBCLK		(MPC8XX_HZ / 16)
 
 #endif	/* __CONFIG_H */
-- 
1.6.0.4

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

* [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-08 15:26 [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros Marcel Ziswiler
@ 2009-09-08 18:41 ` Wolfgang Denk
  2009-09-08 20:50   ` Marcel Ziswiler
  2009-09-09 19:18 ` [U-Boot] [PATCH][v2] " Marcel Ziswiler
  1 sibling, 1 reply; 10+ messages in thread
From: Wolfgang Denk @ 2009-09-08 18:41 UTC (permalink / raw)
  To: u-boot

Dear Marcel Ziswiler,

In message <1252423607.5386.10.camel@com-21> you wrote:
> Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
> ---
>  README                        |    6 ++++--
>  include/configs/IDS8247.h     |    2 --
>  include/configs/MPC8260ADS.h  |    1 -
>  include/configs/linkstation.h |    2 --
>  include/configs/mgcoge.h      |    2 --
>  include/configs/mpc7448hpc2.h |    1 -
>  include/configs/muas3001.h    |    2 --
>  include/configs/stxxtc.h      |    1 -
>  8 files changed, 4 insertions(+), 13 deletions(-)

Please put the affected board maintainers on Cc:

How much testing has this patch seen?

> diff --git a/README b/README
> index ff4ed8b..3cb7786 100644
> --- a/README
> +++ b/README
> @@ -368,8 +368,10 @@ The following options need to be configured:
>  		 * Adds the "fdt" command
>  		 * The bootm command automatically updates the fdt
>  
> -		OF_CPU - The proper name of the cpus node.
> -		OF_SOC - The proper name of the soc node.
> +		OF_CPU - The proper name of the cpus node (only required for
> +			MPC512X and MPC5xxx based boards).
> +		OF_SOC - The proper name of the soc node (only required for
> +			MPC512X and MPC5xxx based boards).
>  		OF_TBCLK - The timebase frequency.
>  		OF_STDOUT_PATH - The path to the console device

What about the other boards then? Say MPC8260ADS or mpc7448hpc2?

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
"Oh dear, I think you'll find reality's on the blink again."
- Marvin The Paranoid Android

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

* [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-08 18:41 ` Wolfgang Denk
@ 2009-09-08 20:50   ` Marcel Ziswiler
  2009-09-08 21:11     ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Marcel Ziswiler @ 2009-09-08 20:50 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang Denk

On Tue, 2009-09-08 at 20:41 +0200, Wolfgang Denk wrote:
> Please put the affected board maintainers on Cc:

OK, sorry. Added them now.

> How much testing has this patch seen?

Tested on ep8248. Unfortunately I don't have access to any of the other boards.

> What about the other boards then? Say MPC8260ADS or mpc7448hpc2?

As OF_CPU and OF_SOC is only ever used in cpu/mpc512x/cpu.c and cpu/mpc5xxx/cpu.c there is no impact whatever on any of the other boards.

Cheers

Marcel Ziswiler

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

* [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-08 20:50   ` Marcel Ziswiler
@ 2009-09-08 21:11     ` Wolfgang Denk
  2009-09-08 21:15       ` Marcel Ziswiler
  0 siblings, 1 reply; 10+ messages in thread
From: Wolfgang Denk @ 2009-09-08 21:11 UTC (permalink / raw)
  To: u-boot

Dear Marcel Ziswiler,

In message <1252443024.5386.76.camel@com-21> you wrote:
> 
> > What about the other boards then? Say MPC8260ADS or mpc7448hpc2?
> 
> As OF_CPU and OF_SOC is only ever used in cpu/mpc512x/cpu.c and
> cpu/mpc5xxx/cpu.c there is no impact whatever on any of the other
> boards.

The patch should remove the macros then from the respective config
files.

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
I don't mind criticism. You know me. I've  never  been  one  to  take
offence  at  criticism. No one could say I'm the sort to take offence
at criticism -- Not twice, anyway. Not without blowing bubbles.
                                  - Terry Pratchett, _Witches Abroad_

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

* [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-08 21:11     ` Wolfgang Denk
@ 2009-09-08 21:15       ` Marcel Ziswiler
  2009-09-08 21:23         ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Marcel Ziswiler @ 2009-09-08 21:15 UTC (permalink / raw)
  To: u-boot

Dear Wolfang Denk

On Tue, 2009-09-08 at 23:11 +0200, Wolfgang Denk wrote:
> The patch should remove the macros then from the respective config
> files.

Isn't that exactly what my patch does?

Cheers

Marcel Ziswiler

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

* [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-08 21:15       ` Marcel Ziswiler
@ 2009-09-08 21:23         ` Wolfgang Denk
  2009-09-08 21:30           ` Marcel Ziswiler
  0 siblings, 1 reply; 10+ messages in thread
From: Wolfgang Denk @ 2009-09-08 21:23 UTC (permalink / raw)
  To: u-boot

Dear Marcel Ziswiler,

In message <1252444556.5386.91.camel@com-21> you wrote:
> 
> On Tue, 2009-09-08 at 23:11 +0200, Wolfgang Denk wrote:
> > The patch should remove the macros then from the respective config
> > files.
> 
> Isn't that exactly what my patch does?

It doesn't do it for all affected boards. That's why I asked about for
example MPC8260ADS or mpc7448hpc2:

-> grep OF_CPU include/configs/{MPC8260ADS,mpc7448hpc2}.h
include/configs/MPC8260ADS.h:#define OF_CPU                     "cpu at 0"
include/configs/mpc7448hpc2.h:#define OF_CPU                    "PowerPC,7448 at 0"



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
The average woman would rather have beauty than brains,  because  the
average man can see better than he can think.

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

* [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-08 21:23         ` Wolfgang Denk
@ 2009-09-08 21:30           ` Marcel Ziswiler
  0 siblings, 0 replies; 10+ messages in thread
From: Marcel Ziswiler @ 2009-09-08 21:30 UTC (permalink / raw)
  To: u-boot

On Tue, 2009-09-08 at 23:23 +0200, Wolfgang Denk wrote:
> It doesn't do it for all affected boards. That's why I asked about for
> example MPC8260ADS or mpc7448hpc2:
> -> grep OF_CPU include/configs/{MPC8260ADS,mpc7448hpc2}.h
> include/configs/MPC8260ADS.h:#define OF_CPU                     "cpu at 0"
> include/configs/mpc7448hpc2.h:#define OF_CPU                    "PowerPC,7448 at 0"

Yes it does. What are you talking about?

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

* [U-Boot] [PATCH][v2] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-08 15:26 [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros Marcel Ziswiler
  2009-09-08 18:41 ` Wolfgang Denk
@ 2009-09-09 19:18 ` Marcel Ziswiler
  2009-09-11 11:08   ` Guennadi Liakhovetski
  2009-09-22 18:35   ` Wolfgang Denk
  1 sibling, 2 replies; 10+ messages in thread
From: Marcel Ziswiler @ 2009-09-09 19:18 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
---
Changes since v1:
- CC all respective board maintainers

 README                        |    6 ++++--
 include/configs/IDS8247.h     |    2 --
 include/configs/MPC8260ADS.h  |    1 -
 include/configs/linkstation.h |    2 --
 include/configs/mgcoge.h      |    2 --
 include/configs/mpc7448hpc2.h |    1 -
 include/configs/muas3001.h    |    2 --
 include/configs/stxxtc.h      |    1 -
 8 files changed, 4 insertions(+), 13 deletions(-)

diff --git a/README b/README
index ff4ed8b..3cb7786 100644
--- a/README
+++ b/README
@@ -368,8 +368,10 @@ The following options need to be configured:
 		 * Adds the "fdt" command
 		 * The bootm command automatically updates the fdt
 
-		OF_CPU - The proper name of the cpus node.
-		OF_SOC - The proper name of the soc node.
+		OF_CPU - The proper name of the cpus node (only required for
+			MPC512X and MPC5xxx based boards).
+		OF_SOC - The proper name of the soc node (only required for
+			MPC512X and MPC5xxx based boards).
 		OF_TBCLK - The timebase frequency.
 		OF_STDOUT_PATH - The path to the console device
 
diff --git a/include/configs/IDS8247.h b/include/configs/IDS8247.h
index 4c4af05..147a8b2 100644
--- a/include/configs/IDS8247.h
+++ b/include/configs/IDS8247.h
@@ -125,8 +125,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 
-#define OF_CPU	"PowerPC,8247 at 0"
-#define OF_SOC	"soc at f0000000"
 #define OF_TBCLK	(bd->bi_busfreq / 4)
 #define OF_STDOUT_PATH	"/soc at f0000000/serial8250 at e0008000"
 
diff --git a/include/configs/MPC8260ADS.h b/include/configs/MPC8260ADS.h
index 942a4cc..677a143 100644
--- a/include/configs/MPC8260ADS.h
+++ b/include/configs/MPC8260ADS.h
@@ -209,7 +209,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 #if defined(CONFIG_OF_LIBFDT)
-#define OF_CPU			"cpu at 0"
 #define OF_TBCLK		(bd->bi_busfreq / 4)
 #endif
 
diff --git a/include/configs/linkstation.h b/include/configs/linkstation.h
index 2feb3ae..16b464c 100644
--- a/include/configs/linkstation.h
+++ b/include/configs/linkstation.h
@@ -96,8 +96,6 @@
 
 #define CONFIG_OF_LIBFDT	1
 
-#define OF_CPU			"PowerPC,603e"
-#define OF_SOC			"soc10x at 80000000"
 #define OF_STDOUT_PATH		"/soc10x/serial at 80004600"
 
 /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
diff --git a/include/configs/mgcoge.h b/include/configs/mgcoge.h
index b955749..55d1fc9 100644
--- a/include/configs/mgcoge.h
+++ b/include/configs/mgcoge.h
@@ -347,8 +347,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 
-#define OF_CPU			"PowerPC,8247 at 0"
-#define OF_SOC			"soc at f0000000"
 #define OF_TBCLK		(bd->bi_busfreq / 4)
 #define OF_STDOUT_PATH		"/soc/cpm/serial at 11a90"
 
diff --git a/include/configs/mpc7448hpc2.h b/include/configs/mpc7448hpc2.h
index 4f98ba4..be12186 100644
--- a/include/configs/mpc7448hpc2.h
+++ b/include/configs/mpc7448hpc2.h
@@ -79,7 +79,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 
-#define OF_CPU			"PowerPC,7448 at 0"
 #define OF_TSI			"tsi108 at c0000000"
 #define OF_TBCLK		(bd->bi_busfreq / 8)
 #define OF_STDOUT_PATH		"/tsi108 at c0000000/serial at 7808"
diff --git a/include/configs/muas3001.h b/include/configs/muas3001.h
index ae033b2..c94daa3 100644
--- a/include/configs/muas3001.h
+++ b/include/configs/muas3001.h
@@ -405,8 +405,6 @@
 #define CONFIG_OF_LIBFDT	1
 #define CONFIG_OF_BOARD_SETUP	1
 
-#define OF_CPU			"PowerPC,8270 at 0"
-#define OF_SOC			"soc at f0000000"
 #define OF_TBCLK		(bd->bi_busfreq / 4)
 #if defined(CONFIG_MUAS_DEV_BOARD)
 #define OF_STDOUT_PATH		"/soc/cpm/serial at 11a90"
diff --git a/include/configs/stxxtc.h b/include/configs/stxxtc.h
index d16262b..5854366 100644
--- a/include/configs/stxxtc.h
+++ b/include/configs/stxxtc.h
@@ -509,7 +509,6 @@ typedef unsigned int led_id_t;
 /* pass open firmware flattened device tree */
 #define CONFIG_OF_LIBFDT	1
 
-#define OF_CPU			"PowerPC,MPC870 at 0"
 #define OF_TBCLK		(MPC8XX_HZ / 16)
 
 #endif	/* __CONFIG_H */
-- 
1.6.4.2

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

* [U-Boot] [PATCH][v2] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-09 19:18 ` [U-Boot] [PATCH][v2] " Marcel Ziswiler
@ 2009-09-11 11:08   ` Guennadi Liakhovetski
  2009-09-22 18:35   ` Wolfgang Denk
  1 sibling, 0 replies; 10+ messages in thread
From: Guennadi Liakhovetski @ 2009-09-11 11:08 UTC (permalink / raw)
  To: u-boot

On Wed, 9 Sep 2009, Marcel Ziswiler wrote:

> Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>

Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>

> ---
> Changes since v1:
> - CC all respective board maintainers
> 
>  README                        |    6 ++++--
>  include/configs/IDS8247.h     |    2 --
>  include/configs/MPC8260ADS.h  |    1 -
>  include/configs/linkstation.h |    2 --
>  include/configs/mgcoge.h      |    2 --
>  include/configs/mpc7448hpc2.h |    1 -
>  include/configs/muas3001.h    |    2 --
>  include/configs/stxxtc.h      |    1 -
>  8 files changed, 4 insertions(+), 13 deletions(-)
> 
> diff --git a/README b/README
> index ff4ed8b..3cb7786 100644
> --- a/README
> +++ b/README
> @@ -368,8 +368,10 @@ The following options need to be configured:
>  		 * Adds the "fdt" command
>  		 * The bootm command automatically updates the fdt
>  
> -		OF_CPU - The proper name of the cpus node.
> -		OF_SOC - The proper name of the soc node.
> +		OF_CPU - The proper name of the cpus node (only required for
> +			MPC512X and MPC5xxx based boards).
> +		OF_SOC - The proper name of the soc node (only required for
> +			MPC512X and MPC5xxx based boards).
>  		OF_TBCLK - The timebase frequency.
>  		OF_STDOUT_PATH - The path to the console device
>  
> diff --git a/include/configs/IDS8247.h b/include/configs/IDS8247.h
> index 4c4af05..147a8b2 100644
> --- a/include/configs/IDS8247.h
> +++ b/include/configs/IDS8247.h
> @@ -125,8 +125,6 @@
>  #define CONFIG_OF_LIBFDT	1
>  #define CONFIG_OF_BOARD_SETUP	1
>  
> -#define OF_CPU	"PowerPC,8247 at 0"
> -#define OF_SOC	"soc at f0000000"
>  #define OF_TBCLK	(bd->bi_busfreq / 4)
>  #define OF_STDOUT_PATH	"/soc at f0000000/serial8250 at e0008000"
>  
> diff --git a/include/configs/MPC8260ADS.h b/include/configs/MPC8260ADS.h
> index 942a4cc..677a143 100644
> --- a/include/configs/MPC8260ADS.h
> +++ b/include/configs/MPC8260ADS.h
> @@ -209,7 +209,6 @@
>  #define CONFIG_OF_LIBFDT	1
>  #define CONFIG_OF_BOARD_SETUP	1
>  #if defined(CONFIG_OF_LIBFDT)
> -#define OF_CPU			"cpu at 0"
>  #define OF_TBCLK		(bd->bi_busfreq / 4)
>  #endif
>  
> diff --git a/include/configs/linkstation.h b/include/configs/linkstation.h
> index 2feb3ae..16b464c 100644
> --- a/include/configs/linkstation.h
> +++ b/include/configs/linkstation.h
> @@ -96,8 +96,6 @@
>  
>  #define CONFIG_OF_LIBFDT	1
>  
> -#define OF_CPU			"PowerPC,603e"
> -#define OF_SOC			"soc10x at 80000000"
>  #define OF_STDOUT_PATH		"/soc10x/serial at 80004600"
>  
>  /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
> diff --git a/include/configs/mgcoge.h b/include/configs/mgcoge.h
> index b955749..55d1fc9 100644
> --- a/include/configs/mgcoge.h
> +++ b/include/configs/mgcoge.h
> @@ -347,8 +347,6 @@
>  #define CONFIG_OF_LIBFDT	1
>  #define CONFIG_OF_BOARD_SETUP	1
>  
> -#define OF_CPU			"PowerPC,8247 at 0"
> -#define OF_SOC			"soc at f0000000"
>  #define OF_TBCLK		(bd->bi_busfreq / 4)
>  #define OF_STDOUT_PATH		"/soc/cpm/serial at 11a90"
>  
> diff --git a/include/configs/mpc7448hpc2.h b/include/configs/mpc7448hpc2.h
> index 4f98ba4..be12186 100644
> --- a/include/configs/mpc7448hpc2.h
> +++ b/include/configs/mpc7448hpc2.h
> @@ -79,7 +79,6 @@
>  #define CONFIG_OF_LIBFDT	1
>  #define CONFIG_OF_BOARD_SETUP	1
>  
> -#define OF_CPU			"PowerPC,7448 at 0"
>  #define OF_TSI			"tsi108 at c0000000"
>  #define OF_TBCLK		(bd->bi_busfreq / 8)
>  #define OF_STDOUT_PATH		"/tsi108 at c0000000/serial at 7808"
> diff --git a/include/configs/muas3001.h b/include/configs/muas3001.h
> index ae033b2..c94daa3 100644
> --- a/include/configs/muas3001.h
> +++ b/include/configs/muas3001.h
> @@ -405,8 +405,6 @@
>  #define CONFIG_OF_LIBFDT	1
>  #define CONFIG_OF_BOARD_SETUP	1
>  
> -#define OF_CPU			"PowerPC,8270 at 0"
> -#define OF_SOC			"soc at f0000000"
>  #define OF_TBCLK		(bd->bi_busfreq / 4)
>  #if defined(CONFIG_MUAS_DEV_BOARD)
>  #define OF_STDOUT_PATH		"/soc/cpm/serial at 11a90"
> diff --git a/include/configs/stxxtc.h b/include/configs/stxxtc.h
> index d16262b..5854366 100644
> --- a/include/configs/stxxtc.h
> +++ b/include/configs/stxxtc.h
> @@ -509,7 +509,6 @@ typedef unsigned int led_id_t;
>  /* pass open firmware flattened device tree */
>  #define CONFIG_OF_LIBFDT	1
>  
> -#define OF_CPU			"PowerPC,MPC870 at 0"
>  #define OF_TBCLK		(MPC8XX_HZ / 16)
>  
>  #endif	/* __CONFIG_H */
> -- 
> 1.6.4.2
> 
> 
> 

---
Guennadi Liakhovetski

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

* [U-Boot] [PATCH][v2] FDT: remove obsolete OF_CPU and OF_SOC macros.
  2009-09-09 19:18 ` [U-Boot] [PATCH][v2] " Marcel Ziswiler
  2009-09-11 11:08   ` Guennadi Liakhovetski
@ 2009-09-22 18:35   ` Wolfgang Denk
  1 sibling, 0 replies; 10+ messages in thread
From: Wolfgang Denk @ 2009-09-22 18:35 UTC (permalink / raw)
  To: u-boot

Dear Marcel Ziswiler,

In message <1252523921.3643.8.camel@com-21> you wrote:
> Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
> ---
> Changes since v1:
> - CC all respective board maintainers
> 
>  README                        |    6 ++++--
>  include/configs/IDS8247.h     |    2 --
>  include/configs/MPC8260ADS.h  |    1 -
>  include/configs/linkstation.h |    2 --
>  include/configs/mgcoge.h      |    2 --
>  include/configs/mpc7448hpc2.h |    1 -
>  include/configs/muas3001.h    |    2 --
>  include/configs/stxxtc.h      |    1 -
>  8 files changed, 4 insertions(+), 13 deletions(-)

Applied, 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
Oh, that sound of male ego.  You travel halfway across the galaxy and
it's still the same song.
	-- Eve McHuron, "Mudd's Women", stardate 1330.1

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

end of thread, other threads:[~2009-09-22 18:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-08 15:26 [U-Boot] [PATCH][v1] FDT: remove obsolete OF_CPU and OF_SOC macros Marcel Ziswiler
2009-09-08 18:41 ` Wolfgang Denk
2009-09-08 20:50   ` Marcel Ziswiler
2009-09-08 21:11     ` Wolfgang Denk
2009-09-08 21:15       ` Marcel Ziswiler
2009-09-08 21:23         ` Wolfgang Denk
2009-09-08 21:30           ` Marcel Ziswiler
2009-09-09 19:18 ` [U-Boot] [PATCH][v2] " Marcel Ziswiler
2009-09-11 11:08   ` Guennadi Liakhovetski
2009-09-22 18:35   ` Wolfgang Denk

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