mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
dbg_ports(): remove duplicate prototype
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31558 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ec398340cd
commit
b959497670
22 changed files with 6 additions and 19 deletions
|
@ -25,5 +25,4 @@
|
|||
|
||||
#define DEBUG_CANCEL BUTTON_LEFT
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
#endif
|
||||
|
|
|
@ -19,9 +19,8 @@
|
|||
*
|
||||
****************************************************************************/
|
||||
|
||||
#include "at91sam9260.h"
|
||||
#include <stdbool.h>
|
||||
#include "debug-target.h"
|
||||
#include "system.h"
|
||||
|
||||
bool dbg_ports(void)
|
||||
{
|
||||
|
|
|
@ -21,6 +21,5 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
|
||||
bool dbg_ports(void);
|
||||
bool dbg_hw_info(void);
|
||||
|
||||
|
|
|
@ -25,6 +25,5 @@
|
|||
|
||||
bool dbg_hw_target_info(void);
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
||||
#endif /* DEBUG_TARGET_H */
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
|
||||
#define DEBUG_CANCEL BUTTON_BACK
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
bool __dbg_dvfs_dptc(void);
|
||||
|
||||
#endif /* DEBUG_TARGET_H */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* just empty stub */
|
||||
#include <stdbool.h>
|
||||
bool dbg_ports()
|
||||
{
|
||||
return false;
|
||||
|
|
|
@ -21,4 +21,3 @@
|
|||
#if CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
|
||||
# define DEBUG_CANCEL BUTTON_PLAY
|
||||
#endif /* key definitions */
|
||||
bool dbg_ports(void);
|
||||
|
|
|
@ -44,5 +44,4 @@
|
|||
#elif (CONFIG_KEYPAD == PBELL_VIBE500_PAD)
|
||||
# define DEBUG_CANCEL BUTTON_CANCEL
|
||||
#endif
|
||||
bool dbg_ports(void);
|
||||
bool dbg_hw_info(void);
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
#include "config.h"
|
||||
#include "system.h"
|
||||
#include "kernel.h"
|
||||
#include "debug-target.h"
|
||||
#include "button.h"
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
#endif
|
||||
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
||||
#endif /* _DEBUG_TARGET_H_ */
|
||||
|
||||
|
|
|
@ -26,5 +26,4 @@
|
|||
#endif
|
||||
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
#include "config.h"
|
||||
#include "system.h"
|
||||
#include "kernel.h"
|
||||
#include "debug-target.h"
|
||||
#include "button.h"
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#define DEBUG_CANCEL BUTTON_MENU
|
||||
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
||||
#endif /* _DEBUG_TARGET_H_ */
|
||||
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
****************************************************************************/
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "system.h"
|
||||
#include "config.h"
|
||||
#include "kernel.h"
|
||||
#include "debug-target.h"
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#define DEBUG_CANCEL BUTTON_MENU
|
||||
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
||||
#endif /* _DEBUG_TARGET_H_ */
|
||||
|
||||
|
|
|
@ -20,5 +20,4 @@
|
|||
****************************************************************************/
|
||||
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
||||
|
|
|
@ -20,5 +20,4 @@
|
|||
****************************************************************************/
|
||||
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
||||
|
|
|
@ -20,4 +20,3 @@
|
|||
****************************************************************************/
|
||||
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
|
|
@ -32,5 +32,4 @@
|
|||
(CONFIG_KEYPAD == MPIO_HD300_PAD)
|
||||
# define DEBUG_CANCEL BUTTON_REC
|
||||
#endif
|
||||
bool dbg_ports(void);
|
||||
bool dbg_hw_info(void);
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
****************************************************************************/
|
||||
|
||||
#include "config.h"
|
||||
#include "system.h"
|
||||
#include "jz4740.h"
|
||||
#include "debug-target.h"
|
||||
#include <stdarg.h>
|
||||
|
|
|
@ -23,6 +23,5 @@
|
|||
#define __DEBUG_TARGET_H_
|
||||
|
||||
bool dbg_hw_info(void);
|
||||
bool dbg_ports(void);
|
||||
|
||||
#endif /* __DEBUG_TARGET_H_ */
|
||||
|
|
|
@ -24,5 +24,4 @@
|
|||
#elif CONFIG_KEYPAD == ONDIO_PAD
|
||||
# define DEBUG_CANCEL BUTTON_MENU
|
||||
#endif
|
||||
bool dbg_ports(void);
|
||||
bool dbg_hw_info(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue