From: Mike Frysinger Date: Fri, 6 Feb 2009 02:04:47 +0000 (-0500) Subject: net/sntp.c: move ifdef into Makefile COBJS-$(...) X-Git-Tag: v2009.03-rc1~91 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=638ed3e296e70fab286d157b7adedaaa4a09a474;p=platform%2Fkernel%2Fu-boot.git net/sntp.c: move ifdef into Makefile COBJS-$(...) Signed-off-by: Mike Frysinger Signed-off-by: Ben Warren --- diff --git a/net/Makefile b/net/Makefile index 0eee330..d341874 100644 --- a/net/Makefile +++ b/net/Makefile @@ -33,7 +33,7 @@ COBJS-y += bootp.o COBJS-y += rarp.o COBJS-y += eth.o COBJS-y += nfs.o -COBJS-y += sntp.o +COBJS-$(CONFIG_CMD_SNTP) += sntp.o COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) diff --git a/net/sntp.c b/net/sntp.c index 425d35e..404587e 100644 --- a/net/sntp.c +++ b/net/sntp.c @@ -12,8 +12,6 @@ #include "sntp.h" -#if defined(CONFIG_CMD_NET) && defined(CONFIG_CMD_SNTP) - #define SNTP_TIMEOUT 10000UL static int SntpOurPort; @@ -88,5 +86,3 @@ SntpStart (void) SntpSend (); } - -#endif