imx233: move dbg function declaration to system-target.h

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31573 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2012-01-04 06:37:25 +00:00
parent 606155cd20
commit d1dd88eb45
4 changed files with 2 additions and 28 deletions

View file

@ -20,7 +20,6 @@
****************************************************************************/ ****************************************************************************/
#include "system.h" #include "system.h"
#include "debug-target.h"
#include "dma-imx233.h" #include "dma-imx233.h"
#include "action.h" #include "action.h"
#include "lcd.h" #include "lcd.h"

View file

@ -1,26 +0,0 @@
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2011 by Amaury Pouly
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#ifndef DEBUG_TARGET_H
#define DEBUG_TARGET_H
bool dbg_hw_target_info(void);
#endif /* DEBUG_TARGET_H */

View file

@ -20,7 +20,6 @@
****************************************************************************/ ****************************************************************************/
#include "system.h" #include "system.h"
#include "debug-target.h"
#include "button-target.h" #include "button-target.h"
bool dbg_hw_target_info(void) bool dbg_hw_target_info(void)

View file

@ -117,4 +117,6 @@ static inline void mdelay(unsigned msecs)
void usb_insert_int(void); void usb_insert_int(void);
void usb_remove_int(void); void usb_remove_int(void);
bool dbg_hw_target_info(void);
#endif /* SYSTEM_TARGET_H */ #endif /* SYSTEM_TARGET_H */