mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 16:48:18 +00:00
video: Fix video sync kernel-doc format
Place description below function parameters to make kernel-doc stript
happy. Also rename dev to vid to be aligned with function parameters.
Fixes: 1acafc73bf
("dm: video: Add a video uclass")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b6d14c52f9
commit
17da310ac4
1 changed files with 4 additions and 4 deletions
|
@ -151,13 +151,13 @@ int video_clear(struct udevice *dev);
|
||||||
/**
|
/**
|
||||||
* video_sync() - Sync a device's frame buffer with its hardware
|
* video_sync() - Sync a device's frame buffer with its hardware
|
||||||
*
|
*
|
||||||
|
* @vid: Device to sync
|
||||||
|
* @force: True to force a sync even if there was one recently (this is
|
||||||
|
* very expensive on sandbox)
|
||||||
|
*
|
||||||
* Some frame buffers are cached or have a secondary frame buffer. This
|
* Some frame buffers are cached or have a secondary frame buffer. This
|
||||||
* function syncs these up so that the current contents of the U-Boot frame
|
* function syncs these up so that the current contents of the U-Boot frame
|
||||||
* buffer are displayed to the user.
|
* buffer are displayed to the user.
|
||||||
*
|
|
||||||
* @dev: Device to sync
|
|
||||||
* @force: True to force a sync even if there was one recently (this is
|
|
||||||
* very expensive on sandbox)
|
|
||||||
*/
|
*/
|
||||||
void video_sync(struct udevice *vid, bool force);
|
void video_sync(struct udevice *vid, bool force);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue