diff options
author | Tom Rini <trini@konsulko.com> | 2015-08-30 19:48:39 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-08-30 19:48:39 -0400 |
commit | 7c0e5d865ff0b86dfce492b656238919c659d756 (patch) | |
tree | 673b7954e13e1964240cff790f49c0044c418b5e /common/lcd_simplefb.c | |
parent | f875bbb49111c308b90b9ca74d1b79f69498b278 (diff) | |
parent | c385ac283023a4fdd304674a8163ac271a1fb758 (diff) | |
download | u-boot-imx-7c0e5d865ff0b86dfce492b656238919c659d756.zip u-boot-imx-7c0e5d865ff0b86dfce492b656238919c659d756.tar.gz u-boot-imx-7c0e5d865ff0b86dfce492b656238919c659d756.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-video
Diffstat (limited to 'common/lcd_simplefb.c')
-rw-r--r-- | common/lcd_simplefb.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/lcd_simplefb.c b/common/lcd_simplefb.c index 8db2add..2ba00f6 100644 --- a/common/lcd_simplefb.c +++ b/common/lcd_simplefb.c @@ -16,11 +16,14 @@ DECLARE_GLOBAL_DATA_PTR; static int lcd_dt_simplefb_configure_node(void *blob, int off) { -#if LCD_BPP == LCD_COLOR16 int vl_col = lcd_get_pixel_width(); int vl_row = lcd_get_pixel_height(); +#if LCD_BPP == LCD_COLOR16 return fdt_setup_simplefb_node(blob, off, gd->fb_base, vl_col, vl_row, vl_col * 2, "r5g6b5"); +#elif LCD_BPP == LCD_COLOR32 + return fdt_setup_simplefb_node(blob, off, gd->fb_base, vl_col, vl_row, + vl_col * 4, "a8r8g8b8"); #else return -1; #endif |