diff options
author | Tom Rini <trini@konsulko.com> | 2020-06-28 10:12:25 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-28 10:12:25 -0400 |
commit | 19a7e5814b77b288472aa96b6d94fb2591cc9184 (patch) | |
tree | 63d44b846dca34b1fd237eae392f748a1212fb65 /drivers/video/vidconsole-uclass.c | |
parent | 5f99ba1e24693eb881c2eb673f78ee241056f825 (diff) | |
parent | bccb385a83a5f9ee603a30de1d39b03fd6f45b23 (diff) |
Merge tag 'fixes-for-v2020.07' of https://gitlab.denx.de/u-boot/custodians/u-boot-video
- fix logo on mx6ul_14x14_evk with DM_VIDEO enabled
- fix banner string overwriting the logo on small displays
- fix splash warning when building for ARM64
- fix STM32 DSI driver to probe only on supported hardware
- fix memory corruption with DSI panel drivers
Diffstat (limited to 'drivers/video/vidconsole-uclass.c')
-rw-r--r-- | drivers/video/vidconsole-uclass.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/vidconsole-uclass.c b/drivers/video/vidconsole-uclass.c index d30e6db6f6..9b76154721 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); } |