Searched refs:video_sync (Results 1 - 10 of 10) sorted by relevance

/u-boot/cmd/
H A Dvideo.c46 ret = video_sync(dev->parent, false);
/u-boot/include/
H A Dvideo.h128 * @video_sync: Synchronize FB with device. Some device like SPI based LCD
130 * For these devices implement video_sync hook to call a sync
132 * should return 0 on success video_sync and error code otherwise
135 int (*video_sync)(struct udevice *vid); member in struct:video_ops
251 * video_sync() - Sync a device's frame buffer with its hardware
263 int video_sync(struct udevice *vid, bool force);
268 * This calls video_sync() on all active video devices.
/u-boot/drivers/video/
H A Dvideo-uclass.c248 return video_sync(dev, false);
351 int video_sync(struct udevice *vid, bool force) function
356 if (ops && ops->video_sync) {
357 ret = ops->video_sync(vid);
396 ret = video_sync(dev, true);
H A Dvidconsole-uclass.c82 return video_sync(dev->parent, false);
107 ret = video_sync(dev->parent, false);
110 console_puts_select_stderr(true, "[vc err: video_sync]");
307 ret = video_sync(dev->parent, false);
310 console_puts_select_stderr(true, "[vc err: video_sync]");
535 ret = video_sync(dev->parent, false);
538 console_puts_select_stderr(true, "[vc err: video_sync]");
557 ret = video_sync(dev->parent, false);
560 console_puts_select_stderr(true, "[vc err: video_sync]");
H A Dmcde_simple.c126 .video_sync = mcde_simple_video_sync,
H A Dseps525.c310 .video_sync = seps525_sync,
H A Dvideo_bmp.c469 return video_sync(dev, false);
H A Dconsole_truetype.c949 return video_sync(vid, true);
/u-boot/boot/
H A Dexpo.c213 video_sync(dev, true);
/u-boot/test/dm/
H A Dvideo.c248 video_sync(con->parent, false);

Completed in 88 milliseconds