From 8de536c27c10bbbd7bd974b68718f3c788e4e8af Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 14 Jan 2016 18:10:49 -0700 Subject: video: sandbox: Allow selection of font size and console name For testing it is useful to be able to select the font size and the console driver for sandbox. Add this information to platform data and copy it to the video device when needed. Signed-off-by: Simon Glass --- drivers/video/sandbox_sdl.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'drivers/video/sandbox_sdl.c') diff --git a/drivers/video/sandbox_sdl.c b/drivers/video/sandbox_sdl.c index 21448a1411..dc5a220d51 100644 --- a/drivers/video/sandbox_sdl.c +++ b/drivers/video/sandbox_sdl.c @@ -35,6 +35,8 @@ static int sandbox_sdl_probe(struct udevice *dev) uc_priv->ysize = plat->yres; uc_priv->bpix = plat->bpix; uc_priv->rot = plat->rot; + uc_priv->vidconsole_drv_name = plat->vidconsole_drv_name; + uc_priv->font_size = plat->font_size; return 0; } -- cgit v1.2.3