move dbg_ports() from apps/menu_debug.c to target tree. FS#11712 by me.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28522 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Marcin Bukat 2010-11-06 14:24:25 +00:00
parent 97a783a79a
commit b8a7f5137b
24 changed files with 519 additions and 380 deletions

View file

@ -129,7 +129,7 @@ static void display_enabled_clocks(void)
(clkgr & CPM_CLKGR_UART0) ? "stopped" : "running");
}
bool __dbg_ports(void)
bool dbg_ports(void)
{
return false;
}

View file

@ -23,6 +23,6 @@
#define __DEBUG_TARGET_H_
bool __dbg_hw_info(void);
bool __dbg_ports(void);
bool dbg_ports(void);
#endif /* __DEBUG_TARGET_H_ */