diff options
author | Wolfgang Denk <wd@denx.de> | 2011-05-01 20:44:23 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-06-22 20:00:51 +0200 |
commit | 566e5cf451ae7e33e31bb62ae5b9b258e33f8609 (patch) | |
tree | ad2dd1fedb542a5974ca4d34081fbafb8f7f3f9b /arch/arm/lib | |
parent | 79cfe422615c010a75ece41662a05cd432ada389 (diff) | |
download | u-boot-imx-566e5cf451ae7e33e31bb62ae5b9b258e33f8609.zip u-boot-imx-566e5cf451ae7e33e31bb62ae5b9b258e33f8609.tar.gz u-boot-imx-566e5cf451ae7e33e31bb62ae5b9b258e33f8609.tar.bz2 |
ARM: drop unsupported 'trab' board
The 'trab' board configuration is broken, and there is nobody who is
interested and willing to fix it. Drop it.
This includes support for VFD displays which have always been used by
this board only.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'arch/arm/lib')
-rw-r--r-- | arch/arm/lib/board.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 1a784a1..e7af3d2 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -344,17 +344,6 @@ void board_init_f (ulong bootflag) addr &= ~(4096 - 1); debug ("Top of RAM usable for U-Boot at: %08lx\n", addr); -#ifdef CONFIG_VFD -# ifndef PAGE_SIZE -# define PAGE_SIZE 4096 -# endif - /* - * reserve memory for VFD display (always full pages) - */ - addr -= vfd_setmem (addr); - gd->fb_base = addr; -#endif /* CONFIG_VFD */ - #ifdef CONFIG_LCD #ifdef CONFIG_FB_ADDR gd->fb_base = CONFIG_FB_ADDR; @@ -533,11 +522,6 @@ void board_init_r (gd_t *id, ulong dest_addr) /* initialize environment */ env_relocate (); -#ifdef CONFIG_VFD - /* must do this after the framebuffer is allocated */ - drv_vfd_init(); -#endif /* CONFIG_VFD */ - /* IP Address */ gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr"); |