summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2012-01-04 06:37:25 +0000
committerRafaël Carré <rafael.carre@gmail.com>2012-01-04 06:37:25 +0000
commitd1dd88eb4587e5dffb6efab15af8083c672dfb1d (patch)
treea4481316f52bdaa9520e975c3f0728247fc70527
parent606155cd20a4f6b07a803d03f4dabbb7e6b2dc6d (diff)
imx233: move dbg function declaration to system-target.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31573 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/imx233/debug-imx233.c1
-rw-r--r--firmware/target/arm/imx233/debug-target.h26
-rw-r--r--firmware/target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c1
-rw-r--r--firmware/target/arm/imx233/system-target.h2
4 files changed, 2 insertions, 28 deletions
diff --git a/firmware/target/arm/imx233/debug-imx233.c b/firmware/target/arm/imx233/debug-imx233.c
index 7ba4044b74..51d306b7b1 100644
--- a/firmware/target/arm/imx233/debug-imx233.c
+++ b/firmware/target/arm/imx233/debug-imx233.c
@@ -20,7 +20,6 @@
****************************************************************************/
#include "system.h"
-#include "debug-target.h"
#include "dma-imx233.h"
#include "action.h"
#include "lcd.h"
diff --git a/firmware/target/arm/imx233/debug-target.h b/firmware/target/arm/imx233/debug-target.h
index 1248c884e4..e69de29bb2 100644
--- a/firmware/target/arm/imx233/debug-target.h
+++ b/firmware/target/arm/imx233/debug-target.h
@@ -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 */
diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c b/firmware/target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c
index b6c096cb69..e9f626d1c2 100644
--- a/firmware/target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c
+++ b/firmware/target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c
@@ -20,7 +20,6 @@
****************************************************************************/
#include "system.h"
-#include "debug-target.h"
#include "button-target.h"
bool dbg_hw_target_info(void)
diff --git a/firmware/target/arm/imx233/system-target.h b/firmware/target/arm/imx233/system-target.h
index a01c05febd..9ad9d1d808 100644
--- a/firmware/target/arm/imx233/system-target.h
+++ b/firmware/target/arm/imx233/system-target.h
@@ -117,4 +117,6 @@ static inline void mdelay(unsigned msecs)
void usb_insert_int(void);
void usb_remove_int(void);
+bool dbg_hw_target_info(void);
+
#endif /* SYSTEM_TARGET_H */