diff options
author | Stefan Roese | 2019-01-30 08:54:11 +0100 |
---|---|---|
committer | Stefan Roese | 2019-02-05 14:23:21 +0100 |
commit | 6d9a98c58390156033e31a3a4078347bec618202 (patch) | |
tree | 1a1f85fec2b32e2be8b1fcc56c281358459fae1a /board | |
parent | 32c9e1c269d05a9dcf22f2b9ebd1c47bfe19c971 (diff) |
video: Armada XP: Move driver to DM_VIDEO
This patch moves the Armada XP video / LCD driver to DM_VIDEO. With this
move, the legacy interface board_video_init() is removed from the
theadorable board code (only user of this video driver). The support
via DT will be added in a separate patch.
This patch also enables DM_VIDEO for the theadorable board, as this is
needed to not break git bisect'ability.
Signed-off-by: Stefan Roese <sr@denx.de>
Reviewed-by: Anatolij Gustschin <agust@denx.de>
Acked-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/theadorable/theadorable.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/board/theadorable/theadorable.c b/board/theadorable/theadorable.c index b59589ae829..dd6def5e6e7 100644 --- a/board/theadorable/theadorable.c +++ b/board/theadorable/theadorable.c @@ -218,22 +218,6 @@ int board_eth_init(bd_t *bis) } #endif -int board_video_init(void) -{ - struct mvebu_lcd_info lcd_info; - - /* Reserved memory area via CONFIG_SYS_MEM_TOP_HIDE */ - lcd_info.fb_base = gd->ram_size; - lcd_info.x_res = 240; - lcd_info.x_fp = 1; - lcd_info.x_bp = 45; - lcd_info.y_res = 320; - lcd_info.y_fp = 1; - lcd_info.y_bp = 3; - - return mvebu_lcd_register_init(&lcd_info); -} - #ifdef CONFIG_BOARD_LATE_INIT int board_late_init(void) { |