mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
bootp can use mdelay
Cleanup bootp code by using mdelay. Signed-off-by: Pavel Machek <pavel@denx.de> Acked-by: Marek Vasut <marex@denx.de>
This commit is contained in:
@@ -605,7 +605,7 @@ BootpRequest(void)
|
|||||||
int extlen, pktlen, iplen;
|
int extlen, pktlen, iplen;
|
||||||
int eth_hdr_size;
|
int eth_hdr_size;
|
||||||
#ifdef CONFIG_BOOTP_RANDOM_DELAY
|
#ifdef CONFIG_BOOTP_RANDOM_DELAY
|
||||||
ulong i, rand_ms;
|
ulong rand_ms;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start");
|
bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start");
|
||||||
@@ -623,8 +623,7 @@ BootpRequest(void)
|
|||||||
rand_ms = rand() >> 19;
|
rand_ms = rand() >> 19;
|
||||||
|
|
||||||
printf("Random delay: %ld ms...\n", rand_ms);
|
printf("Random delay: %ld ms...\n", rand_ms);
|
||||||
for (i = 0; i < rand_ms; i++)
|
mdelay(rand_ms);
|
||||||
udelay(1000); /*Wait 1ms*/
|
|
||||||
|
|
||||||
#endif /* CONFIG_BOOTP_RANDOM_DELAY */
|
#endif /* CONFIG_BOOTP_RANDOM_DELAY */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user