summaryrefslogtreecommitdiff
path: root/firmware/powermgmt.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/powermgmt.c')
-rw-r--r--firmware/powermgmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/powermgmt.c b/firmware/powermgmt.c
index 519823611f..8bfd41939f 100644
--- a/firmware/powermgmt.c
+++ b/firmware/powermgmt.c
@@ -129,9 +129,9 @@ unsigned short power_history[POWER_HISTORY_LEN] = {0};
129 129
130#if (CONFIG_CPU == JZ4732) || (CONFIG_CPU == JZ4760B) || \ 130#if (CONFIG_CPU == JZ4732) || (CONFIG_CPU == JZ4760B) || \
131 (CONFIG_CPU == X1000) || (CONFIG_PLATFORM & PLATFORM_HOSTED) 131 (CONFIG_CPU == X1000) || (CONFIG_PLATFORM & PLATFORM_HOSTED)
132static char power_stack[DEFAULT_STACK_SIZE + POWERMGMT_DEBUG_STACK]; 132static char power_stack[DEFAULT_STACK_SIZE];
133#else 133#else
134static char power_stack[DEFAULT_STACK_SIZE/2 + POWERMGMT_DEBUG_STACK]; 134static char power_stack[DEFAULT_STACK_SIZE/2];
135#endif 135#endif
136static const char power_thread_name[] = "power"; 136static const char power_thread_name[] = "power";
137 137