Re: [PATCH] video: vidconsole: avoid multiple lines overwrite logo

2020-06-29 Thread Anatolij Gustschin
On Wed, 10 Jun 2020 02:52:21 -0700
Ye Li ye...@nxp.com wrote:

> Fix the bug that multiple lines wraps to overwrite logo bmp
> display.
> 
> Signed-off-by: Ye Li 
> ---
>  drivers/video/vidconsole-uclass.c | 1 +
>  1 file changed, 1 insertion(+)

Applied to u-boot-video/master, thanks!

--
Anatolij



Re: [PATCH] video: vidconsole: avoid multiple lines overwrite logo

2020-06-17 Thread Jagan Teki
On Wed, Jun 10, 2020 at 3:22 PM Ye Li  wrote:
>
> Fix the bug that multiple lines wraps to overwrite logo bmp
> display.
>
> Signed-off-by: Ye Li 
> ---

Reviewed-by: Jagan Teki 
Tested-by: Jagan Teki  # bpi-m1+, bpi-m64


[PATCH] video: vidconsole: avoid multiple lines overwrite logo

2020-06-10 Thread Ye Li
Fix the bug that multiple lines wraps to overwrite logo bmp
display.

Signed-off-by: Ye Li 
---
 drivers/video/vidconsole-uclass.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/video/vidconsole-uclass.c 
b/drivers/video/vidconsole-uclass.c
index d30e6db..9b76154 100644
--- a/drivers/video/vidconsole-uclass.c
+++ b/drivers/video/vidconsole-uclass.c
@@ -622,6 +622,7 @@ void vidconsole_position_cursor(struct udevice *dev, 
unsigned col, unsigned row)
col *= priv->x_charsize;
row *= priv->y_charsize;
priv->xcur_frac = VID_TO_POS(min_t(short, col, vid_priv->xsize - 1));
+   priv->xstart_frac = priv->xcur_frac;
priv->ycur = min_t(short, row, vid_priv->ysize - 1);
 }
 
-- 
2.7.4