From c9e00806d47d7be96f0b308ca52edcb2d20e6aff Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Tue, 1 Mar 2011 21:19:30 +0000 Subject: 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 --- firmware/powermgmt.c | 6 ++---- 1 file 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) /* If the main thread fails to shut down the system, we will force a power off after an 20 second timeout - 28 seconds if recording */ if (shutdown_timeout == 0) { -#if defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2) +#if (defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2)) && !defined(SIMULATOR) pcf50606_reset_timeout(); /* Reset timer on first attempt only */ #endif #ifdef HAVE_RECORDING @@ -788,13 +788,11 @@ void cancel_shutdown(void) { logf("cancel_shutdown()"); -#ifndef BOOTLOADER -#if defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2) +#if (defined(IAUDIO_X5) || defined(IAUDIO_M5) || defined(COWON_D2)) && !defined(SIMULATOR) /* TODO: Move some things to target/ tree */ if (shutdown_timeout) pcf50606_reset_timeout(); #endif -#endif /* BOOTLOADER */ shutdown_timeout = 0; } -- cgit