Skip to content
Snippets Groups Projects
Commit 7a1e87b1 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

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: default avatarMike Frysinger <vapier@gentoo.org>
parent 6d7d4803
No related branches found
No related tags found
No related merge requests found
...@@ -40,9 +40,8 @@ COBJS-y += board.o ...@@ -40,9 +40,8 @@ COBJS-y += board.o
COBJS-y += boot.o COBJS-y += boot.o
COBJS-y += cache.o COBJS-y += cache.o
COBJS-y += muldi3.o COBJS-y += muldi3.o
COBJS-y += post.o COBJS-$(CONFIG_POST) += post.o tests.o
COBJS-y += string.o COBJS-y += string.o
COBJS-y += tests.o
SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
......
...@@ -30,8 +30,6 @@ ...@@ -30,8 +30,6 @@
#include <logbuff.h> #include <logbuff.h>
#endif #endif
#ifdef CONFIG_POST
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
#define POST_MAX_NUMBER 32 #define POST_MAX_NUMBER 32
...@@ -421,5 +419,3 @@ unsigned long post_time_ms(unsigned long base) ...@@ -421,5 +419,3 @@ unsigned long post_time_ms(unsigned long base)
{ {
return (unsigned long)get_ticks() / (get_tbclk() / CONFIG_SYS_HZ) - base; return (unsigned long)get_ticks() / (get_tbclk() / CONFIG_SYS_HZ) - base;
} }
#endif /* CONFIG_POST */
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
#include <common.h> #include <common.h>
#include <config.h> #include <config.h>
#ifdef CONFIG_POST
#include <post.h> #include <post.h>
#define CONFIG_SYS_POST_FLASH 0x00004000 #define CONFIG_SYS_POST_FLASH 0x00004000
...@@ -249,5 +248,3 @@ struct post_test post_list[] = { ...@@ -249,5 +248,3 @@ struct post_test post_list[] = {
}; };
unsigned int post_list_size = sizeof(post_list) / sizeof(struct post_test); unsigned int post_list_size = sizeof(post_list) / sizeof(struct post_test);
#endif /* CONFIG_POST */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment