From 5176cf3eca9939906bbc70b4dbf9c181c437f2bf Mon Sep 17 00:00:00 2001 From: kkurbjun Date: Wed, 12 Nov 2008 04:41:22 +0000 Subject: [PATCH] Fix a bug when shutting down the player with the charger plugged in with the flashed bootloader git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19097 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/s3c2440/gigabeat-fx/power-meg-fx.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/firmware/target/arm/s3c2440/gigabeat-fx/power-meg-fx.c b/firmware/target/arm/s3c2440/gigabeat-fx/power-meg-fx.c index 544869ab6..c1c059526 100644 --- a/firmware/target/arm/s3c2440/gigabeat-fx/power-meg-fx.c +++ b/firmware/target/arm/s3c2440/gigabeat-fx/power-meg-fx.c @@ -70,6 +70,11 @@ void power_off(void) _backlight_off(); _buttonlight_off(); sleep(HZ); + + /* Do this to allow the drive to properly reset when player restarts + * immediately without running OF shutdown. + */ + GPGCON&=~0x00300000; /* Rockbox never properly shutdown the player. When the sleep bit is set * the player actually wakes up in some type of "zombie" state -- 2.11.4.GIT