Cleanup (get rid of debug code that sneaked in)

This commit is contained in:
Wolfgang Denk 2006-03-07 00:22:36 +01:00
parent 951a954b77
commit 0be248fa9a
7 changed files with 8 additions and 28 deletions

View File

@ -203,9 +203,9 @@ LIST_ARM11=" \
LIST_pxa=" \ LIST_pxa=" \
adsvix cerf250 cradle csb226 \ adsvix cerf250 cradle csb226 \
innokom lubbock pxa255_idp wepep250 \ delta innokom lubbock pxa255_idp \
xaeniax xm250 xsengine zylonite \ wepep250 xaeniax xm250 xsengine \
delta zylonite \
" "
LIST_ixp="ixdp425" LIST_ixp="ixdp425"

View File

@ -208,9 +208,6 @@ etags:
net disk rtc dtt drivers drivers/sk98lin common \ net disk rtc dtt drivers drivers/sk98lin common \
\( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
ctags:
ctags -Re
System.map: u-boot System.map: u-boot
@$(NM) $< | \ @$(NM) $< | \
grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
@ -1644,12 +1641,12 @@ cerf250_config : unconfig
cradle_config : unconfig cradle_config : unconfig
@./mkconfig $(@:_config=) arm pxa cradle @./mkconfig $(@:_config=) arm pxa cradle
delta_config :
@./mkconfig $(@:_config=) arm pxa delta
csb226_config : unconfig csb226_config : unconfig
@./mkconfig $(@:_config=) arm pxa csb226 @./mkconfig $(@:_config=) arm pxa csb226
delta_config :
@./mkconfig $(@:_config=) arm pxa delta
innokom_config : unconfig innokom_config : unconfig
@./mkconfig $(@:_config=) arm pxa innokom @./mkconfig $(@:_config=) arm pxa innokom

View File

@ -131,15 +131,6 @@ else
CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes
endif endif
ifdef WILD_WILD_WEST
CFLAGS := $(CPPFLAGS) -Werror
endif
ifdef NO_JUMP
CFLAGS := $(CPPFLAGS) -fno-schedule-insns -fno-schedule-insns2
endif
# avoid trigraph warnings while parsing pci.h (produced by NIOS gcc-2.9) # avoid trigraph warnings while parsing pci.h (produced by NIOS gcc-2.9)
# this option have to be placed behind -Wall -- that's why it is here # this option have to be placed behind -Wall -- that's why it is here
ifeq ($(ARCH),nios) ifeq ($(ARCH),nios)

View File

@ -33,5 +33,4 @@ PLATFORM_CPPFLAGS += -march=armv5 -mtune=xscale
# #
# ======================================================================== # ========================================================================
PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu)
# for gcc-3x: PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32)
PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,))

View File

@ -72,7 +72,7 @@
#define NO_AUTOPROBE #define NO_AUTOPROBE
#define SMC_DEBUG 3 #define SMC_DEBUG 0
#if SMC_DEBUG > 1 #if SMC_DEBUG > 1
static const char version[] = static const char version[] =

View File

@ -61,11 +61,6 @@ typedef struct global_data {
#define GD_FLG_DEVINIT 0x00002 /* Devices have been initialized */ #define GD_FLG_DEVINIT 0x00002 /* Devices have been initialized */
#define GD_FLG_SILENT 0x00004 /* Silent mode */ #define GD_FLG_SILENT 0x00004 /* Silent mode */
#undef GCC_4_SCREW_GDP
#ifdef GCC_4_SCREW_GDP
# define DECLARE_GLOBAL_DATA_PTR register gd_t* volatile gd asm ("r8");
#else
#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r8") #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r8")
#endif
#endif /* __ASM_GBL_DATA_H */ #endif /* __ASM_GBL_DATA_H */

View File

@ -38,8 +38,6 @@
* FIQ Stack: 00ebef7c * FIQ Stack: 00ebef7c
*/ */
#define DEBUG 1
#include <common.h> #include <common.h>
#include <command.h> #include <command.h>
#include <malloc.h> #include <malloc.h>