diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 07:57:58 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 14:19:22 -0500 | 
| commit | eafc8db0e35275330f43a4cf7b7ae8aba71c9728 (patch) | |
| tree | 0f76700afacfdeab0feafbd787e32d347083a0fd /net/bootp.h | |
| parent | 806150063a6b98d7e757bd9f640af1755bb387fd (diff) | |
| download | olio-uboot-2014.01-eafc8db0e35275330f43a4cf7b7ae8aba71c9728.tar.xz olio-uboot-2014.01-eafc8db0e35275330f43a4cf7b7ae8aba71c9728.zip | |
net: Move MAC-seeded rand out of bootp.c
Make the MAC-seeded random number generator available to /net in
general.  MAC-seeded rand will be needed by link-local as well, so
give it an interface.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net/bootp.h')
| -rw-r--r-- | net/bootp.h | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/net/bootp.h b/net/bootp.h index ce7373454..bf4e8756a 100644 --- a/net/bootp.h +++ b/net/bootp.h @@ -63,9 +63,6 @@ struct Bootp_t {  extern ulong	BootpID;		/* ID of cur BOOTP request	*/  extern char	BootFile[128];		/* Boot file name		*/  extern int	BootpTry; -#ifdef CONFIG_BOOTP_RANDOM_DELAY -extern ulong	seed1, seed2;		/* seed for random BOOTP delay	*/ -#endif  /* Send a BOOTP request */ |