]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/lib/board.c
arm: make default implementation of cache_flush() weakly linked
[u-boot] / arch / arm / lib / board.c
index 99bc2c70d43ea1f87f14c81d7127365ab401b628..169dfebcf157432218f4953550bdb1dea5eca0c2 100644 (file)
@@ -341,17 +341,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,10 +522,6 @@ void board_init_r (gd_t *id, ulong dest_addr)
 #if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
        arm_pci_init();
 #endif
-#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");