diff options
author | Stefan Roese <sr@denx.de> | 2013-12-04 09:27:35 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-12 14:54:21 -0500 |
commit | b36f457c1bc726f4452fdc55230a067c1704eaf8 (patch) | |
tree | 0b443056034263bc8da151474c9d49e04fba0563 /board/technexion/tao3530 | |
parent | a9f524904730a0f722483938bf7eb8baedbc2448 (diff) | |
download | u-boot-imx-b36f457c1bc726f4452fdc55230a067c1704eaf8.zip u-boot-imx-b36f457c1bc726f4452fdc55230a067c1704eaf8.tar.gz u-boot-imx-b36f457c1bc726f4452fdc55230a067c1704eaf8.tar.bz2 |
arm: omap3: Remove bootargs mem_size handling
The memory size is autodetected and is passed to the Linux kernel
either via ATAGs or device-tree (dtb). So there is no need to
pass it via the bootargs.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Tapani Utriainen <tapani@technexion.com>
Cc: Thorsten Eisbein <thorsten.eisbein@head-acoustics.de>
Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/technexion/tao3530')
-rw-r--r-- | board/technexion/tao3530/tao3530.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/board/technexion/tao3530/tao3530.c b/board/technexion/tao3530/tao3530.c index 9268d38..814537b 100644 --- a/board/technexion/tao3530/tao3530.c +++ b/board/technexion/tao3530/tao3530.c @@ -133,18 +133,6 @@ int misc_init_r(void) dieid_num_r(); - /* Set memory size environment variable, depending on revision */ - switch (tao3530_revision()) { - case 0x2: /* Rev C1 -- 256MB */ - setenv("mem_size", "mem=256M"); - break; - case 0x3: /* Rev A2/B2 -- 128MB */ - setenv("mem_size", "mem=128M"); - break; - default: - printf("Warning: Unknown TAO3530 rev, setting mem=128M\n"); - } - return 0; } |