From: Kim Phillips Date: Thu, 5 Jul 2012 13:19:32 +0000 (+0000) Subject: net: make net_rand.h inclusion depend on BOOTP_RANDOM_DELAY X-Git-Tag: v2012.07-rc1~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db7720bad4ae0577c140fd72def24311afece894;p=platform%2Fkernel%2Fu-boot.git net: make net_rand.h inclusion depend on BOOTP_RANDOM_DELAY commit "net: use common rand()/srand() functions" introduced the following build warning on the current u-boot-arm tree: $ ./MAKEALL MPC8313ERDB_66 Configuring for MPC8313ERDB_66 - Board: MPC8313ERDB, Options: SYS_66MHZ text data bss dec hex filename 271988 13976 41768 327732 50034 ./u-boot In file included from bootp.c:15:0: net_rand.h: In function 'srand_mac': net_rand.h:40:2: warning: implicit declaration of function 'srand' [-Wimplicit-function-declaration] adding this dependency fixes it. Cc: Michael Walle Cc: Joe Hershberger Signed-off-by: Kim Phillips Acked-by: Michael Walle --- diff --git a/net/bootp.c b/net/bootp.c index 0f0867b..87e30ab 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -12,12 +12,14 @@ #include #include #include "bootp.h" -#include "net_rand.h" #include "tftp.h" #include "nfs.h" #ifdef CONFIG_STATUS_LED #include #endif +#ifdef CONFIG_BOOTP_RANDOM_DELAY +#include "net_rand.h" +#endif #define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */