summaryrefslogtreecommitdiff
path: root/drivers/serial
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-07-31 13:39:14 -0600
committerTom Rini <[email protected]>2024-07-31 13:39:14 -0600
commit7010f22eba35b2a6b66ba37ce565e566ca08c68f (patch)
tree5c16c39603495488019a130b5c947951d9f84cff /drivers/serial
parent59ca3a2f20f37fd45e4ccf266ae2df9379c7af91 (diff)
parent521d377f7852c037e338c66756982084b1cb0132 (diff)
Merge tag 'video-20240731' of https://source.denx.de/u-boot/custodians/u-boot-video
- improve video sync performance with background syncing (cyclic) - fix dropping characters when pasting commands over the UART - enable background syncing by default for boards using VIDEO - make sandbox video more responsive
Diffstat (limited to 'drivers/serial')
-rw-r--r--drivers/serial/sandbox.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/serial/sandbox.c b/drivers/serial/sandbox.c
index ec0068e33d3..77a1558db68 100644
--- a/drivers/serial/sandbox.c
+++ b/drivers/serial/sandbox.c
@@ -138,8 +138,6 @@ static int sandbox_serial_pending(struct udevice *dev, bool input)
return 0;
os_usleep(100);
- if (IS_ENABLED(CONFIG_VIDEO) && !IS_ENABLED(CONFIG_SPL_BUILD))
- video_sync_all();
avail = membuff_putraw(&priv->buf, 100, false, &data);
if (!avail)
return 1; /* buffer full */