summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-05-21 07:12:46 -0400
committerTom Rini <trini@konsulko.com>2019-05-21 07:12:46 -0400
commitb9625abe03452f3926afa4308bf25c361af9c0ef (patch)
tree9bdae44eb53ae0781e71285dbb5be9e2bbbfa846 /test
parent79764b5081d276596dc9294dece73354f81a6801 (diff)
parente63168a9ffae18f807f59925bb5d9d4623633e46 (diff)
Merge tag 'video-for-2019.07-rc3' of git://git.denx.de/u-boot-video
- update for using splashfile instead of location->name when loading the splash image from a FIT - updates for loading internal and external splash data from FIT - DM_GPIO/DM_VIDEO migration for mx53 cx9020 board - fix boot issue on mx6sabresd board after DM_VIDEO migration - increase the max preallocated framebuffer BPP to 32 in ipuv3 driver to prepare for configurations with higher color depth - allow to use vidconsole_put_string() in board code for text output on LCD displays
Diffstat (limited to 'test')
-rw-r--r--test/dm/video.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/dm/video.c b/test/dm/video.c
index 6be5defc53c..3151ebb73fc 100644
--- a/test/dm/video.c
+++ b/test/dm/video.c
@@ -97,14 +97,6 @@ static int select_vidconsole(struct unit_test_state *uts, const char *drv_name)
return 0;
}
-static void vidconsole_put_string(struct udevice *dev, const char *str)
-{
- const char *s;
-
- for (s = str; *s; s++)
- vidconsole_put_char(dev, *s);
-}
-
/* Test text output works on the video console */
static int dm_test_video_text(struct unit_test_state *uts)
{