diff options
| author | Simon Glass <[email protected]> | 2023-06-01 10:22:48 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-07-14 12:54:51 -0400 |
| commit | 2d6ee92c6af06eeb7f7410180d5faa8f5e840bbb (patch) | |
| tree | a5448f1c00eaf1e7538be640bf7f5914050d3fbf /include | |
| parent | 9af341502c1cdf1d40a41e8fe6c3922f1e409f33 (diff) | |
video: Use enum with video_index_to_colour()
Use the provided enum with this function, so it is clearer what should be
passed to it.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/video.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/video.h b/include/video.h index 55e9f32f593..e98d0f9c895 100644 --- a/include/video.h +++ b/include/video.h @@ -164,10 +164,10 @@ enum colour_idx { * VID_COLOR_COUNT. * * @priv private data of the video device (UCLASS_VIDEO) - * @idx color index + * @idx color index (e.g. VID_YELLOW) * Return: color value */ -u32 video_index_to_colour(struct video_priv *priv, unsigned int idx); +u32 video_index_to_colour(struct video_priv *priv, enum colour_idx idx); /** * video_reserve() - Reserve frame-buffer memory for video devices |
