summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2018-06-05 12:07:36 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2021-04-13 11:09:57 +0200
commit19e78300a127bc1761677312700a709b207852ff (patch)
treea5a00e79b5f8b3f6b0ec937d41b5a6e6b2bffbf9 /include
parent9441630d35d6fadf0446b5b60d7f3b2c27ec1d02 (diff)
downloadbarebox-19e78300a127bc1761677312700a709b207852ff.tar.gz
barebox-19e78300a127bc1761677312700a709b207852ff.tar.xz
atmel_lcdfb: fix atmel,lcd-wiring-mode; BGR => BRG
Fix spelling error that prevented us from getting the atmel,lcd-wiring-mode The Bindings mandate the use of BRG. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'include')
-rw-r--r--include/video/atmel_lcdc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/video/atmel_lcdc.h b/include/video/atmel_lcdc.h
index 07a30e2e6f..7e3f95873c 100644
--- a/include/video/atmel_lcdc.h
+++ b/include/video/atmel_lcdc.h
@@ -23,10 +23,10 @@
#define __ATMEL_LCDC_H__
/* Way LCD wires are connected to the chip:
- * Some Atmel chips use BGR color mode (instead of standard RGB)
+ * Some Atmel chips use BRG color mode (instead of standard RGB)
* A swapped wiring onboard can bring to RGB mode.
*/
-#define ATMEL_LCDC_WIRING_BGR 0
+#define ATMEL_LCDC_WIRING_BRG 0
#define ATMEL_LCDC_WIRING_RGB 1
#define ATMEL_LCDC_WIRING_RGB555 2