diff options
Diffstat (limited to 'board/cmi')
-rw-r--r-- | board/cmi/Makefile | 2 | ||||
-rw-r--r-- | board/cmi/cmi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/cmi/Makefile b/board/cmi/Makefile index 6a42304..aeebb9e 100644 --- a/board/cmi/Makefile +++ b/board/cmi/Makefile @@ -38,7 +38,7 @@ clean: rm -f $(SOBJS) $(OBJS) distclean: clean - rm -f $(LIB) core *.bak .depend + rm -f $(LIB) core *.bak $(obj).depend ######################################################################### diff --git a/board/cmi/cmi.c b/board/cmi/cmi.c index cbf34f7..8501cae 100644 --- a/board/cmi/cmi.c +++ b/board/cmi/cmi.c @@ -62,7 +62,7 @@ int checkboard(void) /* * Get RAM size. */ -long int initdram(int board_type) +phys_size_t initdram(int board_type) { return (SRAM_SIZE); /* We currently have a static size adapted for cmi board. */ } |