diff options
| -rw-r--r-- | bootloader/gigabeat-s.c | 3 | ||||
| -rw-r--r-- | firmware/target/arm/imx31/dvfs_dptc-imx31.c | 9 |
2 files changed, 8 insertions, 4 deletions
diff --git a/bootloader/gigabeat-s.c b/bootloader/gigabeat-s.c index 2e95d4c..8258e27 100644 --- a/bootloader/gigabeat-s.c +++ b/bootloader/gigabeat-s.c @@ -143,6 +143,9 @@ static void handle_usb(void) button_close(); backlight_close(); + /* Sleep a little to let the backlight ramp up */ + sleep(HZ*5/4); + reset_screen(); } diff --git a/firmware/target/arm/imx31/dvfs_dptc-imx31.c b/firmware/target/arm/imx31/dvfs_dptc-imx31.c index cae9a38..129e47d 100644 --- a/firmware/target/arm/imx31/dvfs_dptc-imx31.c +++ b/firmware/target/arm/imx31/dvfs_dptc-imx31.c @@ -571,14 +571,15 @@ static void dptc_stop(void) if (dptc_running) { + dptc_running = false; + /* Disable DPTC and mask interrupt. */ CCM_PMCR0 = (CCM_PMCR0 & ~CCM_PMCR0_DPTEN) | CCM_PMCR0_PTVAIM; avic_disable_int(INT_CCM_CLK); - dptc_running = false; - } - /* Go back to default working point. */ - dptc_new_wp(DPTC_WP_DEFAULT); + /* Go back to default working point. */ + dptc_new_wp(DPTC_WP_DEFAULT); + } restore_irq(oldlevel); |