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 /common/lcd.c | |
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 'common/lcd.c')
-rw-r--r-- | common/lcd.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/common/lcd.c b/common/lcd.c index d29308aeb6..2f3594a417 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -31,10 +31,6 @@ #endif #endif -#ifdef CONFIG_SANDBOX -#include <asm/sdl.h> -#endif - #ifndef CONFIG_LCD_ALIGNMENT #define CONFIG_LCD_ALIGNMENT PAGE_SIZE #endif @@ -72,13 +68,6 @@ void lcd_sync(void) if (lcd_flush_dcache) flush_dcache_range((u32)lcd_base, (u32)(lcd_base + lcd_get_size(&line_length))); -#elif defined(CONFIG_SANDBOX) && defined(CONFIG_VIDEO_SANDBOX_SDL) - static ulong last_sync; - - if (get_timer(last_sync) > 10) { - sandbox_sdl_sync(lcd_base); - last_sync = get_timer(0); - } #endif } |