summaryrefslogtreecommitdiff
path: root/firmware/target
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target')
-rw-r--r--firmware/target/arm/system-pp502x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/system-pp502x.c b/firmware/target/arm/system-pp502x.c
index 3dd802a3ed..27d11aa815 100644
--- a/firmware/target/arm/system-pp502x.c
+++ b/firmware/target/arm/system-pp502x.c
@@ -427,8 +427,6 @@ void system_reboot(void)
427#if defined(SANSA_E200) || defined(SANSA_C200) 427#if defined(SANSA_E200) || defined(SANSA_C200)
428 CACHE_CTL &= ~CACHE_CTL_VECT_REMAP; 428 CACHE_CTL &= ~CACHE_CTL_VECT_REMAP;
429 429
430 pp_i2c_send(AS3514_I2C_ADDR, DCDC15, 0x0); /* backlight off */
431
432 /* Magic used by the c200 OF: 0x23066000 430 /* Magic used by the c200 OF: 0x23066000
433 Magic used by the c200 BL: 0x23066b7b 431 Magic used by the c200 BL: 0x23066b7b
434 In both cases, the OF executes these 2 commands from iram. */ 432 In both cases, the OF executes these 2 commands from iram. */
@@ -437,6 +435,8 @@ void system_reboot(void)
437#else 435#else
438 DEV_RS |= DEV_SYSTEM; 436 DEV_RS |= DEV_SYSTEM;
439#endif 437#endif
438 /* wait until reboot kicks in */
439 while (1);
440} 440}
441 441
442int system_memory_guard(int newmode) 442int system_memory_guard(int newmode)