diff options
author | Simon Glass <sjg@chromium.org> | 2016-01-18 19:52:25 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-01-20 19:10:16 -0700 |
commit | 3ade5bc4dc24edf5e1f13f3c43a9e8b7f8c2d853 (patch) | |
tree | e276da8f4b751ea7feecf32fa750e71671bfa7f2 /board/sandbox | |
parent | 1e69ad014c68bf375ba2113486c5c0095d3292d0 (diff) | |
download | u-boot-3ade5bc4dc24edf5e1f13f3c43a9e8b7f8c2d853.tar.gz |
dm: video: sandbox: Convert sandbox to use driver model for video
Now that driver model support is available, convert sandbox over to use it.
We can remove a few of the special hooks that sandbox currently has.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'board/sandbox')
-rw-r--r-- | board/sandbox/sandbox.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/board/sandbox/sandbox.c b/board/sandbox/sandbox.c index 592f7728c0..b41e9decb3 100644 --- a/board/sandbox/sandbox.c +++ b/board/sandbox/sandbox.c @@ -47,23 +47,6 @@ int dram_init(void) return 0; } -#ifdef CONFIG_BOARD_EARLY_INIT_F -int board_early_init_f(void) -{ -#ifdef CONFIG_VIDEO_SANDBOX_SDL - int ret; - - ret = sandbox_lcd_sdl_early_init(); - if (ret) { - puts("Could not init sandbox LCD emulation\n"); - return ret; - } -#endif - - return 0; -} -#endif - #ifdef CONFIG_BOARD_LATE_INIT int board_late_init(void) { |