mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a missing extern inside the net/bootp.h header Signed-off-by: Remy Bohmer <linux@bohmer.net> Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
1803f7f91f
commit
61365501a0
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ extern ulong BootpID; /* ID of cur BOOTP request */
|
|||
extern char BootFile[128]; /* Boot file name */
|
||||
extern int BootpTry;
|
||||
#ifdef CONFIG_BOOTP_RANDOM_DELAY
|
||||
ulong seed1, seed2; /* seed for random BOOTP delay */
|
||||
extern ulong seed1, seed2; /* seed for random BOOTP delay */
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue