mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
common: Remove video_setmem()
This function is no-longer defined in U-Boot. Drop the declaration from common.h Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -426,13 +426,6 @@ static int reserve_video(void)
|
|||||||
gd->relocaddr = lcd_setmem(gd->relocaddr);
|
gd->relocaddr = lcd_setmem(gd->relocaddr);
|
||||||
gd->fb_base = gd->relocaddr;
|
gd->fb_base = gd->relocaddr;
|
||||||
# endif /* CONFIG_FB_ADDR */
|
# endif /* CONFIG_FB_ADDR */
|
||||||
#elif defined(CONFIG_VIDEO) && \
|
|
||||||
(!defined(CONFIG_PPC)) && \
|
|
||||||
!defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
|
|
||||||
!defined(CONFIG_M68K)
|
|
||||||
/* reserve memory for video display (always full pages) */
|
|
||||||
gd->relocaddr = video_setmem(gd->relocaddr);
|
|
||||||
gd->fb_base = gd->relocaddr;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@@ -385,9 +385,6 @@ ulong bootcount_load (void);
|
|||||||
/* $(CPU)/.../<eth> */
|
/* $(CPU)/.../<eth> */
|
||||||
void mii_init (void);
|
void mii_init (void);
|
||||||
|
|
||||||
/* $(CPU)/.../video.c */
|
|
||||||
ulong video_setmem (ulong);
|
|
||||||
|
|
||||||
/* arch/$(ARCH)/lib/cache.c */
|
/* arch/$(ARCH)/lib/cache.c */
|
||||||
void enable_caches(void);
|
void enable_caches(void);
|
||||||
void flush_cache (unsigned long, unsigned long);
|
void flush_cache (unsigned long, unsigned long);
|
||||||
|
Reference in New Issue
Block a user