diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-12 23:43:12 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-12 23:43:12 +0200 |
commit | b2f508075c16e337de6961c25310856a8a3152cc (patch) | |
tree | a2632eebb35d8a456cc4c34fce64796be97deb13 /board/voiceblue | |
parent | 50814844e4a6a6818aaaa246e4639d5eb044ef22 (diff) |
Minor code cleanup
Diffstat (limited to 'board/voiceblue')
-rw-r--r-- | board/voiceblue/Makefile | 2 | ||||
-rw-r--r-- | board/voiceblue/eeprom.c | 3 | ||||
-rw-r--r-- | board/voiceblue/eeprom_start.S | 5 |
3 files changed, 4 insertions, 6 deletions
diff --git a/board/voiceblue/Makefile b/board/voiceblue/Makefile index 3b3e5239e63..6302fa854ac 100644 --- a/board/voiceblue/Makefile +++ b/board/voiceblue/Makefile @@ -32,7 +32,7 @@ SOBJS := setup.o gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`) LOAD_ADDR = 0x10400000 -LDSCRIPT = $(TOPDIR)/board/$(BOARDDIR)/eeprom.lds +LDSCRIPT = $(TOPDIR)/board/$(BOARDDIR)/eeprom.lds all: $(LIB) eeprom.srec eeprom.bin diff --git a/board/voiceblue/eeprom.c b/board/voiceblue/eeprom.c index 25e22947d77..0ad1b666b91 100644 --- a/board/voiceblue/eeprom.c +++ b/board/voiceblue/eeprom.c @@ -146,7 +146,7 @@ int eeprom(int argc, char *argv[]) { int i, len, ret; unsigned char buf[58], *p; - + app_startup(argv); if (get_version() != XF_VERSION) { printf("Wrong XF_VERSION.\n"); @@ -209,4 +209,3 @@ int eeprom(int argc, char *argv[]) return 0; } - diff --git a/board/voiceblue/eeprom_start.S b/board/voiceblue/eeprom_start.S index 16354f7ccce..8f88de5c3b5 100644 --- a/board/voiceblue/eeprom_start.S +++ b/board/voiceblue/eeprom_start.S @@ -7,6 +7,5 @@ * */ -.globl _start -_start: b eeprom - +.globl _start +_start: b eeprom |