From 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 18 Oct 2008 05:33:51 -0400 Subject: Blackfin: only build post code when CONFIG_POST Save some time by using CONFIG_POST in the Makefile rather than C files. Signed-off-by: Mike Frysinger --- lib_blackfin/Makefile | 3 +-- lib_blackfin/post.c | 4 ---- lib_blackfin/tests.c | 3 --- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/lib_blackfin/Makefile b/lib_blackfin/Makefile index fee0fdaca..93f7d4f10 100644 --- a/lib_blackfin/Makefile +++ b/lib_blackfin/Makefile @@ -40,9 +40,8 @@ COBJS-y += board.o COBJS-y += boot.o COBJS-y += cache.o COBJS-y += muldi3.o -COBJS-y += post.o +COBJS-$(CONFIG_POST) += post.o tests.o COBJS-y += string.o -COBJS-y += tests.o SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) diff --git a/lib_blackfin/post.c b/lib_blackfin/post.c index 4ab9e8bf0..35ccd3cd7 100644 --- a/lib_blackfin/post.c +++ b/lib_blackfin/post.c @@ -30,8 +30,6 @@ #include #endif -#ifdef CONFIG_POST - DECLARE_GLOBAL_DATA_PTR; #define POST_MAX_NUMBER 32 @@ -421,5 +419,3 @@ unsigned long post_time_ms(unsigned long base) { return (unsigned long)get_ticks() / (get_tbclk() / CONFIG_SYS_HZ) - base; } - -#endif /* CONFIG_POST */ diff --git a/lib_blackfin/tests.c b/lib_blackfin/tests.c index c2319ecb7..bf7fba00c 100644 --- a/lib_blackfin/tests.c +++ b/lib_blackfin/tests.c @@ -27,7 +27,6 @@ #include #include -#ifdef CONFIG_POST #include #define CONFIG_SYS_POST_FLASH 0x00004000 @@ -249,5 +248,3 @@ struct post_test post_list[] = { }; unsigned int post_list_size = sizeof(post_list) / sizeof(struct post_test); - -#endif /* CONFIG_POST */ -- cgit v1.2.3