summaryrefslogtreecommitdiff
path: root/firmware/panic.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/panic.c')
-rw-r--r--firmware/panic.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/panic.c b/firmware/panic.c
index dca511473c..fbb6afc577 100644
--- a/firmware/panic.c
+++ b/firmware/panic.c
@@ -111,6 +111,8 @@ void panicf( const char *fmt, ...)
111 if ((GPIO_READ & 0x0c000000) == 0x08000000) /* check for ON button and !hold */ 111 if ((GPIO_READ & 0x0c000000) == 0x08000000) /* check for ON button and !hold */
112#elif defined(IAUDIO_M3) 112#elif defined(IAUDIO_M3)
113 if ((GPIO1_READ & 0x202) == 0x200) /* check for ON button and !hold */ 113 if ((GPIO1_READ & 0x202) == 0x200) /* check for ON button and !hold */
114#elif defined(COWON_D2)
115 if (GPIOA & 0x10) /* check for power button */
114#elif CONFIG_CPU == SH7034 116#elif CONFIG_CPU == SH7034
115#if CONFIG_KEYPAD == PLAYER_PAD 117#if CONFIG_KEYPAD == PLAYER_PAD
116 if (!(PADRL & 0x20)) 118 if (!(PADRL & 0x20))