diff options
Diffstat (limited to 'board/netstar')
-rw-r--r-- | board/netstar/Makefile | 2 | ||||
-rwxr-xr-x | board/netstar/crcek | bin | 36168 -> 0 bytes | |||
-rwxr-xr-x | board/netstar/eeprom | bin | 72374 -> 0 bytes | |||
-rw-r--r-- | board/netstar/flash.c | 2 | ||||
-rw-r--r-- | board/netstar/nand.c | 2 |
5 files changed, 4 insertions, 2 deletions
diff --git a/board/netstar/Makefile b/board/netstar/Makefile index 8ef2189..3a20501 100644 --- a/board/netstar/Makefile +++ b/board/netstar/Makefile @@ -80,6 +80,6 @@ distclean: clean .depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ --include .depend +sinclude .depend ######################################################################### diff --git a/board/netstar/crcek b/board/netstar/crcek Binary files differdeleted file mode 100755 index 9593f89..0000000 --- a/board/netstar/crcek +++ /dev/null diff --git a/board/netstar/eeprom b/board/netstar/eeprom Binary files differdeleted file mode 100755 index c30c98b..0000000 --- a/board/netstar/eeprom +++ /dev/null diff --git a/board/netstar/flash.c b/board/netstar/flash.c index f555c0c..692c416 100644 --- a/board/netstar/flash.c +++ b/board/netstar/flash.c @@ -230,7 +230,7 @@ out: * Copy memory to flash */ -volatile static int write_hword(flash_info_t *info, ulong dest, ushort data) +static int write_hword(flash_info_t *info, ulong dest, ushort data) { vu_short *addr = (vu_short *) dest; ushort result; diff --git a/board/netstar/nand.c b/board/netstar/nand.c index e5b7f33..f470c1a 100644 --- a/board/netstar/nand.c +++ b/board/netstar/nand.c @@ -48,10 +48,12 @@ static void netstar_nand_hwcontrol(struct mtd_info *mtd, int cmd) /* * chip R/B detection */ +/*** static int netstar_nand_ready(struct mtd_info *mtd) { return (*(volatile ushort *)GPIO_DATA_INPUT_REG) & 0x02; } +***/ void board_nand_init(struct nand_chip *nand) { |