Re: [U-Boot] [PATCH v2] powerpc: mpc5xxx: remove redundant CONFIG_MPC5xxx definition

2014-01-15 Thread Gerhard Sittig
On Tue, Jan 14, 2014 at 17:26 +0900, Masahiro Yamada wrote: diff --git a/include/configs/BC3450.h b/include/configs/BC3450.h index 377db7b..ad69d33 100644 --- a/include/configs/BC3450.h +++ b/include/configs/BC3450.h @@ -22,7 +22,6 @@ /* * High Level Configuration Options */

Re: [U-Boot] [PATCH v2] powerpc: mpc5xxx: remove redundant CONFIG_MPC5xxx definition

2014-01-15 Thread Masahiro Yamada
Hello Gerhard, * High Level Configuration Options */ -#define CONFIG_MPC5xxx 1 /* This is an MPC5xxx CPU */ #define CONFIG_MPC5200 1 /* (more precisely a MPC5200 CPU) */ #define CONFIG_TQM5200 1 /* ... on a

[U-Boot] [PATCH v2] powerpc: mpc5xxx: remove redundant CONFIG_MPC5xxx definition

2014-01-14 Thread Masahiro Yamada
We do not have to define CONFIG_MPC5xxx in board config headers (and start.S) because it is defined in arch/powerpc/cpu/mpc5xxx/config.mk. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- Changes in v2: - Fix a typo in the subject: s/redandant/redundant/