summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 72379f4104..4d9be69ba5 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1464,7 +1464,7 @@ static bool dbg_cpufreq(void)
1464 1464
1465#if defined(HAVE_TSC2100) && !defined(SIMULATOR) 1465#if defined(HAVE_TSC2100) && !defined(SIMULATOR)
1466#include "tsc2100.h" 1466#include "tsc2100.h"
1467char *itob(int n, int len) 1467static char *itob(int n, int len)
1468{ 1468{
1469 static char binary[64]; 1469 static char binary[64];
1470 int i,j; 1470 int i,j;
@@ -1519,7 +1519,7 @@ static int tsc2100debug_action_callback(int action, struct gui_synclist *lists)
1519 } 1519 }
1520 return action; 1520 return action;
1521} 1521}
1522bool tsc2100_debug(void) 1522static bool tsc2100_debug(void)
1523{ 1523{
1524 int page = 0; 1524 int page = 0;
1525 char title[32] = "tsc2100 registers - Page 0"; 1525 char title[32] = "tsc2100 registers - Page 0";