summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3240g-eval/src/up_lcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/stm3240g-eval/src/up_lcd.c')
-rw-r--r--nuttx/configs/stm3240g-eval/src/up_lcd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/configs/stm3240g-eval/src/up_lcd.c b/nuttx/configs/stm3240g-eval/src/up_lcd.c
index c77af6ac0..4ab5c0258 100644
--- a/nuttx/configs/stm3240g-eval/src/up_lcd.c
+++ b/nuttx/configs/stm3240g-eval/src/up_lcd.c
@@ -914,7 +914,7 @@ static inline void stm3240g_lcdinitialize(void)
{
uint16_t id;
- /* Check if the LCD is xxx Controller (or the compatible) */
+ /* Check LCD ID */
id = stm3240g_readreg(LCD_REG_0);
lcddbg("LCD ID: %04x\n", id);
@@ -1197,6 +1197,6 @@ void stm3240g_lcdclear(uint16_t color)
for (i = 0; i < STM3240G_XRES * STM3240G_YRES; i++)
{
LCD->value = color;
- }
+ }
}