mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
video: at91: Adjust vidconsole_position_cursor() to use char pos
At present this function uses pixels but it seems more useful for it to position in terms of characters on the screen. This also matches the comment to the function. Update this. Unfortunately there is one user of this function (at91). Have a crack at fixing this, since I cannot test it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Anatolij Gustschin <agust@denx.de>
This commit is contained in:
parent
751fed426f
commit
9949ee876d
2 changed files with 6 additions and 1 deletions
|
@ -18,6 +18,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
|||
|
||||
int at91_video_show_board_info(void)
|
||||
{
|
||||
struct vidconsole_priv *priv;
|
||||
ulong dram_size, nand_size;
|
||||
int i;
|
||||
u32 len = 0;
|
||||
|
@ -63,7 +64,9 @@ int at91_video_show_board_info(void)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
vidconsole_position_cursor(con, 0, logo_info.logo_height);
|
||||
priv = dev_get_uclass_priv(con);
|
||||
vidconsole_position_cursor(con, 0, (logo_info.logo_height +
|
||||
priv->y_charsize - 1) / priv->y_charsize);
|
||||
for (s = buf, i = 0; i < len; s++, i++)
|
||||
vidconsole_put_char(con, *s);
|
||||
|
||||
|
|
|
@ -511,6 +511,8 @@ void vidconsole_position_cursor(struct udevice *dev, unsigned col, unsigned row)
|
|||
struct udevice *vid_dev = dev->parent;
|
||||
struct video_priv *vid_priv = dev_get_uclass_priv(vid_dev);
|
||||
|
||||
col *= priv->x_charsize;
|
||||
row *= priv->y_charsize;
|
||||
priv->xcur_frac = VID_TO_POS(min_t(short, col, vid_priv->xsize - 1));
|
||||
priv->ycur = min_t(short, row, vid_priv->ysize - 1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue