diff options
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/debug-x1000.c')
-rw-r--r-- | firmware/target/mips/ingenic_x1000/debug-x1000.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/firmware/target/mips/ingenic_x1000/debug-x1000.c b/firmware/target/mips/ingenic_x1000/debug-x1000.c index 74bbcd77a6..fe469b1a72 100644 --- a/firmware/target/mips/ingenic_x1000/debug-x1000.c +++ b/firmware/target/mips/ingenic_x1000/debug-x1000.c | |||
@@ -148,7 +148,9 @@ static bool dbg_cpuidle(void) | |||
148 | 148 | ||
149 | #ifdef FIIO_M3K | 149 | #ifdef FIIO_M3K |
150 | extern bool dbg_fiiom3k_touchpad(void); | 150 | extern bool dbg_fiiom3k_touchpad(void); |
151 | extern bool axp173_debug_menu(void); | 151 | #endif |
152 | #ifdef HAVE_AXP_PMU | ||
153 | extern bool axp_debug_menu(void); | ||
152 | #endif | 154 | #endif |
153 | 155 | ||
154 | /* Menu definition */ | 156 | /* Menu definition */ |
@@ -164,7 +166,9 @@ static const struct { | |||
164 | {"Audio", &dbg_audio}, | 166 | {"Audio", &dbg_audio}, |
165 | #ifdef FIIO_M3K | 167 | #ifdef FIIO_M3K |
166 | {"Touchpad", &dbg_fiiom3k_touchpad}, | 168 | {"Touchpad", &dbg_fiiom3k_touchpad}, |
167 | {"Power stats", &axp173_debug_menu}, | 169 | #endif |
170 | #ifdef HAVE_AXP_PMU | ||
171 | {"Power stats", &axp_debug_menu}, | ||
168 | #endif | 172 | #endif |
169 | }; | 173 | }; |
170 | 174 | ||