summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2011-03-01 21:19:30 +0000
committerThomas Jarosch <tomj@simonv.com>2011-03-01 21:19:30 +0000
commitc9e00806d47d7be96f0b308ca52edcb2d20e6aff (patch)
tree195c61f85053e879210efa09e7f90d9d8952591d /firmware
parentef99e33bc57d9f0d70507eb3e1b491cd0597320d (diff)
downloadrockbox-c9e00806d47d7be96f0b308ca52edcb2d20e6aff.tar.gz
rockbox-c9e00806d47d7be96f0b308ca52edcb2d20e6aff.zip
Fix red - 2nd try. Use same ifdef style as in firmware/drivers/pcf50606.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29487 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/powermgmt.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/firmware/powermgmt.c b/firmware/powermgmt.c
index db37a5df0b..4c265d132b 100644
--- a/firmware/powermgmt.c
+++ b/firmware/powermgmt.c
@@ -765,7 +765,7 @@ void sys_poweroff(void)
765 /* If the main thread fails to shut down the system, we will force a 765 /* If the main thread fails to shut down the system, we will force a
766 power off after an 20 second timeout - 28 seconds if recording */ 766 power off after an 20 second timeout - 28 seconds if recording */
767 if (shutdown_timeout == 0) { 767 if (shutdown_timeout == 0) {
768#if defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2) 768#if (defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2)) && !defined(SIMULATOR)
769 pcf50606_reset_timeout(); /* Reset timer on first attempt only */ 769 pcf50606_reset_timeout(); /* Reset timer on first attempt only */
770#endif 770#endif
771#ifdef HAVE_RECORDING 771#ifdef HAVE_RECORDING
@@ -788,13 +788,11 @@ void cancel_shutdown(void)
788{ 788{
789 logf("cancel_shutdown()"); 789 logf("cancel_shutdown()");
790 790
791#ifndef BOOTLOADER 791#if (defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2)) && !defined(SIMULATOR)
792#if defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2)
793 /* TODO: Move some things to target/ tree */ 792 /* TODO: Move some things to target/ tree */
794 if (shutdown_timeout) 793 if (shutdown_timeout)
795 pcf50606_reset_timeout(); 794 pcf50606_reset_timeout();
796#endif 795#endif
797#endif /* BOOTLOADER */
798 796
799 shutdown_timeout = 0; 797 shutdown_timeout = 0;
800} 798}