summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-03-09 13:45:54 +0000
committerAidan MacDonald <amachronic@protonmail.com>2022-03-11 10:42:18 -0500
commiteae9f6f5b715bdd739b261dbd94c1fb117130a8f (patch)
treea6d67f4e1d4d419b175226e79c466113207bf25f
parent355553baf4c45f5c57655ba3c49e3809d9fc1906 (diff)
downloadrockbox-eae9f6f5b715bdd739b261dbd94c1fb117130a8f.tar.gz
rockbox-eae9f6f5b715bdd739b261dbd94c1fb117130a8f.zip
erosqnative: Fix missing END marker in LCD enable sequence
Change-Id: I75b3a396174e84d72e70c6f177bc1702021805f1
-rw-r--r--firmware/target/mips/ingenic_x1000/erosqnative/lcd-erosqnative.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/target/mips/ingenic_x1000/erosqnative/lcd-erosqnative.c b/firmware/target/mips/ingenic_x1000/erosqnative/lcd-erosqnative.c
index 073bddb8b4..19da722898 100644
--- a/firmware/target/mips/ingenic_x1000/erosqnative/lcd-erosqnative.c
+++ b/firmware/target/mips/ingenic_x1000/erosqnative/lcd-erosqnative.c
@@ -99,6 +99,7 @@ static const uint32_t erosqnative_lcd_cmd_enable[] = {
99 /* Display On */ 99 /* Display On */
100 LCD_INSTR_CMD, 0x29, 100 LCD_INSTR_CMD, 0x29,
101 LCD_INSTR_UDELAY, 20000, 101 LCD_INSTR_UDELAY, 20000,
102 LCD_INSTR_END,
102}; 103};
103 104
104/* sleep and wake copied directly from m3k */ 105/* sleep and wake copied directly from m3k */