summaryrefslogtreecommitdiff
path: root/include/video.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-10-01 21:22:48 +0300
committerSimon Glass <sjg@chromium.org>2018-10-09 13:40:27 +0300
commit8c466ed3807811de0c5daf3e803048a6f4bd7401 (patch)
treeef6208ca084fb322b86e97d2d759e0237adaead3 /include/video.h
parent9949ee876dc585d198a0fd4790a21e9a2332201f (diff)
downloadu-boot-8c466ed3807811de0c5daf3e803048a6f4bd7401.tar.xz
video: Tidy up a few comments in video.o
Add a little more information to one comment and update the guard comment to be more accurate. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'include/video.h')
-rw-r--r--include/video.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/video.h b/include/video.h
index ab416c1cfa..75200f0e45 100644
--- a/include/video.h
+++ b/include/video.h
@@ -55,7 +55,7 @@ enum video_log2_bpp {
* @xsize: Number of pixel columns (e.g. 1366)
* @ysize: Number of pixels rows (e.g.. 768)
* @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.)
- * @bpix: Encoded bits per pixel
+ * @bpix: Encoded bits per pixel (enum video_log2_bpp)
* @vidconsole_drv_name: Driver to use for the text console, NULL to
* select automatically
* @font_size: Font size in pixels (0 to use a default value)
@@ -269,6 +269,6 @@ int lg4573_spi_startup(unsigned int bus, unsigned int cs,
*/
void video_get_info_str(int line_number, char *info);
-#endif /* CONFIG_DM_VIDEO */
+#endif /* !CONFIG_DM_VIDEO */
#endif