diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2011-09-22 08:07:14 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-30 22:01:03 +0200 |
commit | 9aa3c6a1ee907a042a2f38e6397e1678c8597927 (patch) | |
tree | 74051676c24a40f1506a97d3f8926f8ccb08164d | |
parent | 7a5faf089b455a99f9dd79f734d21d02a1b159a4 (diff) | |
download | u-boot-imx-9aa3c6a1ee907a042a2f38e6397e1678c8597927.zip u-boot-imx-9aa3c6a1ee907a042a2f38e6397e1678c8597927.tar.gz u-boot-imx-9aa3c6a1ee907a042a2f38e6397e1678c8597927.tar.bz2 |
mx31pdk: Place machine ID into board config
Let common code set the machine ID.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
-rw-r--r-- | board/freescale/mx31pdk/mx31pdk.c | 1 | ||||
-rw-r--r-- | include/configs/mx31pdk.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/board/freescale/mx31pdk/mx31pdk.c b/board/freescale/mx31pdk/mx31pdk.c index b522cfa..276d451 100644 --- a/board/freescale/mx31pdk/mx31pdk.c +++ b/board/freescale/mx31pdk/mx31pdk.c @@ -63,7 +63,6 @@ int board_early_init_f(void) int board_init(void) { - gd->bd->bi_arch_number = MACH_TYPE_MX31_3DS; /* board id for linux */ /* adress of boot parameters */ gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100; diff --git a/include/configs/mx31pdk.h b/include/configs/mx31pdk.h index 466dc5d..cd156d8 100644 --- a/include/configs/mx31pdk.h +++ b/include/configs/mx31pdk.h @@ -45,6 +45,8 @@ #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_INITRD_TAG +#define CONFIG_MACH_TYPE MACH_TYPE_MX31_3DS + #if defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL) #define CONFIG_SKIP_LOWLEVEL_INIT #endif |