aboutsummaryrefslogtreecommitdiff
path: root/include/video.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-11-19 13:23:56 -0700
committerAnatolij Gustschin <agust@denx.de>2021-12-26 23:02:19 +0100
commitecb8b4f8f3896330ecc5b9b25a8663d00de59b9a (patch)
treed5a69d554f9fb53c772d7b7cd4a49820f9c5ec9a /include/video.h
parent646e169aa0e6e699aa9aa861a0b2ad6705031cba (diff)
downloadu-boot-ecb8b4f8f3896330ecc5b9b25a8663d00de59b9a.zip
u-boot-ecb8b4f8f3896330ecc5b9b25a8663d00de59b9a.tar.gz
u-boot-ecb8b4f8f3896330ecc5b9b25a8663d00de59b9a.tar.bz2
video: Drop the uclass colour map
We don't need this anymore since we use the BMP palette directly. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/video.h')
-rw-r--r--include/video.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/video.h b/include/video.h
index 5ac1387..471b659 100644
--- a/include/video.h
+++ b/include/video.h
@@ -93,7 +93,6 @@ enum video_format {
* @colour_bg: Background colour (pixel value)
* @flush_dcache: true to enable flushing of the data cache after
* the LCD is updated
- * @cmap: Colour map for 8-bit-per-pixel displays
* @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
* @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color)
*/
@@ -118,7 +117,6 @@ struct video_priv {
u32 colour_fg;
u32 colour_bg;
bool flush_dcache;
- ushort *cmap;
u8 fg_col_idx;
u8 bg_col_idx;
};