summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-10-22 14:11:20 -0600
committerTom Rini <[email protected]>2024-10-22 14:11:20 -0600
commit392ff1449f7d30cc48fd4d17320d05882cd68f2e (patch)
tree14cbc33a7c2d0d57f72e537dc66a23bd694102de /include
parent6606a6adfaf8517cff7e5fe0fb206beed80087d5 (diff)
parent722073a0653dd18d0148dd435f067be4e82f9129 (diff)
Merge tag 'video-20241022' of https://source.denx.de/u-boot/custodians/u-boot-video
CI: https://source.denx.de/u-boot/custodians/u-boot-video/-/pipelines/22907 * VNBYTES() comment fix * add VIDEO dependency for FDT_SIMPLEFB * fdt_simplefb: drop not needed CONFIG_VIDEO check * am62x,evm: preserve splash screen while OS is booting * simplefb: warning fix for CONFIG_FDT_64BIT=n
Diffstat (limited to 'include')
-rw-r--r--include/video.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/video.h b/include/video.h
index c7afe22d823..4ec71ab16da 100644
--- a/include/video.h
+++ b/include/video.h
@@ -57,12 +57,8 @@ enum video_log2_bpp {
VIDEO_BPP32,
};
-/*
- * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer
- * brackets to allow multiplication by fractional pixels.
- */
+/* Convert enum video_log2_bpp to bytes and bits */
#define VNBYTES(bpix) ((1 << (bpix)) / 8)
-
#define VNBITS(bpix) (1 << (bpix))
enum video_format {