diff options
| author | Simon Glass <[email protected]> | 2021-11-19 13:23:56 -0700 |
|---|---|---|
| committer | Anatolij Gustschin <[email protected]> | 2021-12-26 23:02:19 +0100 |
| commit | ecb8b4f8f3896330ecc5b9b25a8663d00de59b9a (patch) | |
| tree | d5a69d554f9fb53c772d7b7cd4a49820f9c5ec9a /include | |
| parent | 646e169aa0e6e699aa9aa861a0b2ad6705031cba (diff) | |
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 <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/video.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/video.h b/include/video.h index 5ac1387a395..471b659d6bd 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; }; |
