diff options
author | Johan Hovold <jhovold@gmail.com> | 2013-03-13 10:56:13 +0100 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2013-03-13 11:05:04 +0100 |
commit | 67cf9c0a00bd88443adb7d6c3efa8b18d03f97c5 (patch) | |
tree | 8185cc2862b5d0370656d9fa2549759dc174fd9a /include/video/atmel_lcdc.h | |
parent | a79eac7165ed62114e6ca197195aa5060a54f137 (diff) | |
download | op-kernel-dev-67cf9c0a00bd88443adb7d6c3efa8b18d03f97c5.zip op-kernel-dev-67cf9c0a00bd88443adb7d6c3efa8b18d03f97c5.tar.gz |
ARM: at91: fix LCD-wiring mode
Fix regression introduced by commit 787f9fd23283 ("atmel_lcdfb: support
16bit BGR:565 mode, remove unsupported 15bit modes") which broke 16-bpp
modes for older SOCs which use IBGR:555 (msb is intensity) rather than
BGR:565.
The above commit removes the RGB:555-wiring hack by
removing the no longer used ATMEL_LCDC_WIRING_RGB555 define.
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'include/video/atmel_lcdc.h')
-rw-r--r-- | include/video/atmel_lcdc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/video/atmel_lcdc.h b/include/video/atmel_lcdc.h index 5f0e234..8deb226 100644 --- a/include/video/atmel_lcdc.h +++ b/include/video/atmel_lcdc.h @@ -30,7 +30,6 @@ */ #define ATMEL_LCDC_WIRING_BGR 0 #define ATMEL_LCDC_WIRING_RGB 1 -#define ATMEL_LCDC_WIRING_RGB555 2 /* LCD Controller info data structure, stored in device platform_data */ |