diff options
author | Simon Glass | 2019-08-01 09:46:39 -0600 |
---|---|---|
committer | Tom Rini | 2019-08-11 16:43:41 -0400 |
commit | 9fe657daa79fb27b5f49fb9ce32cb8f5a216ae09 (patch) | |
tree | 8e2c4ff5b55b22c1808d7c14a6166a8773d10026 /common | |
parent | 3c1ecde402ca5ba851ce846ceeeffc6e5ab30490 (diff) |
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>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/common/board_f.c b/common/board_f.c index ed3cf6afbe0..7d656fae6ad 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -426,13 +426,6 @@ static int reserve_video(void) gd->relocaddr = lcd_setmem(gd->relocaddr); gd->fb_base = gd->relocaddr; # 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 return 0; |