diff options
author | Stefan Roese <sr@denx.de> | 2012-09-19 15:18:51 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-15 11:53:59 -0700 |
commit | dee9c534db78d445e5a0b21b34e870afef960dd3 (patch) | |
tree | ea6112ecbf8808cd3aeef7a5fe17e27fe5b738aa /board/ml2/ml2.c | |
parent | 99bcad1809d073a7ec5a6f8ed49637693904e2de (diff) | |
download | u-boot-imx-dee9c534db78d445e5a0b21b34e870afef960dd3.zip u-boot-imx-dee9c534db78d445e5a0b21b34e870afef960dd3.tar.gz u-boot-imx-dee9c534db78d445e5a0b21b34e870afef960dd3.tar.bz2 |
ppc4xx: Remove ML2 board support
As the board seems to be unmaintained for some time, lets remove
the support in mainline completely.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Peter De Schrijver <p2@mind.be>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'board/ml2/ml2.c')
-rw-r--r-- | board/ml2/ml2.c | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/board/ml2/ml2.c b/board/ml2/ml2.c deleted file mode 100644 index 319dca0..0000000 --- a/board/ml2/ml2.c +++ /dev/null @@ -1,62 +0,0 @@ -/* - * ml2.c: U-Boot platform support for Xilinx ML2 board - * - * Copyright 2002 Mind NV - * - * http://www.mind.be/ - * - * Author : Peter De Schrijver (p2@mind.be) - * - * Derived from : Other platform support files in this tree - * - * This software may be used and distributed according to the terms of - * the GNU General Public License (GPL) version 2, incorporated herein by - * reference. Drivers based on or derived from this code fall under the GPL - * and must retain the authorship, copyright and this license notice. This - * file is not a complete program and may only be used when the entire - * program is licensed under the GPL. - * - */ - -#include <common.h> -#include <asm/processor.h> - - -int board_early_init_f (void) -{ - return 0; -} - - -int checkboard (void) -{ - char buf[64]; - int i; - int l = getenv_f("serial#", buf, sizeof(buf)); - - if (l < 0 || strncmp(buf, "ML2", 9)) { - printf ("### No HW ID - assuming ML2"); - } else { - for (i = 0; i < l; i++) { - if (buf[i] == ' ') - break; - putc(buf[i]); - } - } - putc ('\n'); - - return (0); -} - - -phys_size_t initdram (int board_type) -{ - return 32 * 1024 * 1024; -} - -int testdram (void) -{ - printf ("test: xxx MB - ok\n"); - - return (0); -} |