summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/s3c2440/debug-s3c2440.c7
-rw-r--r--firmware/target/arm/s3c2440/debug-target.h26
2 files changed, 6 insertions, 27 deletions
diff --git a/firmware/target/arm/s3c2440/debug-s3c2440.c b/firmware/target/arm/s3c2440/debug-s3c2440.c
index 99ab8e4..dcdea65 100644
--- a/firmware/target/arm/s3c2440/debug-s3c2440.c
+++ b/firmware/target/arm/s3c2440/debug-s3c2440.c
@@ -27,7 +27,12 @@
#include "button.h"
#include "lcd.h"
#include "font.h"
-#include "debug-target.h"
+
+#ifdef GIGABEAT_F
+#define DEBUG_CANCEL BUTTON_POWER
+#elif defined(MINI2440)
+#define DEBUG_CANCEL BUTTON_MENU
+#endif
bool dbg_hw_info(void)
{
diff --git a/firmware/target/arm/s3c2440/debug-target.h b/firmware/target/arm/s3c2440/debug-target.h
index df0097f..e69de29 100644
--- a/firmware/target/arm/s3c2440/debug-target.h
+++ b/firmware/target/arm/s3c2440/debug-target.h
@@ -1,26 +0,0 @@
-/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
- * $Id$
- *
- * Copyright (C) 2007 by Karl Kurbjun
- *
- * 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.
- *
- ****************************************************************************/
-
-#ifdef GIGABEAT_F
-#define DEBUG_CANCEL BUTTON_POWER
-#elif defined(MINI2440)
-#define DEBUG_CANCEL BUTTON_MENU
-#endif