diff options
author | Alexander Graf | 2016-11-02 10:36:19 +0100 |
---|---|---|
committer | Tom Rini | 2016-11-28 20:15:20 -0500 |
commit | 8b82dd9adde852dd506af39dc74ddc59f5295cb7 (patch) | |
tree | 0f9384282be38a9215dbb68dab8304e392b64483 /include/configs | |
parent | 6b0ee50634212a63a49e17646716f87df303a68d (diff) |
bcm2835 video: Map frame buffer as 32bpp
To enable working efifb support, let's map the frame buffer as 32bpp
instead of 16bpp.
Signed-off-by: Alexander Graf <agraf@suse.de>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/rpi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/rpi.h b/include/configs/rpi.h index fa959ef7e34..4406366b186 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -71,7 +71,7 @@ #define CONFIG_BCM2835_GPIO /* LCD */ #define CONFIG_LCD_DT_SIMPLEFB -#define LCD_BPP LCD_COLOR16 +#define LCD_BPP LCD_COLOR32 /* * Prevent allocation of RAM for FB; the real FB address is queried * dynamically from the VideoCore co-processor, and comes from RAM |