summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx31/dvfs_dptc-imx31.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-05-06 04:45:05 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-05-06 04:45:05 +0000
commit0defb8483c817f18f5ee118bdfb48bc8910b523e (patch)
treeee77f9b39ef10656ba434cb63523916b9d61f3f1 /firmware/target/arm/imx31/dvfs_dptc-imx31.c
parent992b7e10b83ee8e24c31ac8e918a999869c321aa (diff)
Gigabeat S bootloader: Fix archaic call placement in dptc_stop which hangs the bootloader before jumping to FW. Let the backlight LED ramp up after unplugging USB which just looks better.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25840 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx31/dvfs_dptc-imx31.c')
-rw-r--r--firmware/target/arm/imx31/dvfs_dptc-imx31.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/firmware/target/arm/imx31/dvfs_dptc-imx31.c b/firmware/target/arm/imx31/dvfs_dptc-imx31.c
index cae9a384c9..129e47d55e 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);