summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/firmware/target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c b/firmware/target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
index 56c8504649..192b4409fb 100644
--- a/firmware/target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
+++ b/firmware/target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
@@ -39,10 +39,11 @@ do { \
39#define SLEEP(x) { register int __i; for(__i=0; __i<x; __i++) asm volatile("nop\n nop\n"); } 39#define SLEEP(x) { register int __i; for(__i=0; __i<x; __i++) asm volatile("nop\n nop\n"); }
40#define DELAY SLEEP(700000); 40#define DELAY SLEEP(700000);
41 41
42#if (defined(ONDA_VX777) && !defined(BOOTLOADER)) || defined(USB_BOOT) 42#if (defined((ONDA_VX777) || (ONDA_VX747P)) && !defined(BOOTLOADER)) \
43 || defined(USB_BOOT)
43 /* 44 /*
44 * Onda VX777 needs this in order to boot correctly, it looks like the SPL 45 * Onda VX777/VX747+ needs this in order to boot correctly, it looks like the
45 * does not correctly initialize the LCD for Rockbox to switch it on. 46 * SPL does not correctly initialize the LCD for Rockbox to switch it on.
46 */ 47 */
47 #define RESET_LCD 48 #define RESET_LCD
48#endif 49#endif