uboot下init_sequence_f函数之reserve_lcd

来源:互联网 发布:java二次开发有前途么 编辑:程序博客网 时间:2024/06/05 19:40
reserve_lcd:

# ifdef CONFIG_LCDstatic int reserve_lcd(void){#  ifdef CONFIG_FB_ADDR gd->fb_base = CONFIG_FB_ADDR;#  else /* reserve memory for LCD display (always full pages) */ gd->relocaddr = lcd_setmem(gd->relocaddr); gd->fb_base = gd->relocaddr;#  endif /* CONFIG_FB_ADDR */

 return 0;}# endif /* CONFIG_LCD */

0 0