diff options
| author | Pavel Machek <[email protected]> | 2014-07-11 11:39:37 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2014-07-22 07:44:25 -0400 |
| commit | 8e8d73b4a5ae051ca2de091151677f2d8340c1f6 (patch) | |
| tree | 701ee5355d1c55e26807aa89d9a4779390cbd05e /net | |
| parent | c13bb167578f716e38828cf9ca0bb38173da5a1d (diff) | |
bootp can use mdelay
Cleanup bootp code by using mdelay.
Signed-off-by: Pavel Machek <[email protected]>
Acked-by: Marek Vasut <[email protected]>
Diffstat (limited to 'net')
| -rw-r--r-- | net/bootp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/bootp.c b/net/bootp.c index 189a0038354..fdb97cb5625 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -605,7 +605,7 @@ BootpRequest(void) int extlen, pktlen, iplen; int eth_hdr_size; #ifdef CONFIG_BOOTP_RANDOM_DELAY - ulong i, rand_ms; + ulong rand_ms; #endif bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start"); @@ -623,8 +623,7 @@ BootpRequest(void) rand_ms = rand() >> 19; printf("Random delay: %ld ms...\n", rand_ms); - for (i = 0; i < rand_ms; i++) - udelay(1000); /*Wait 1ms*/ + mdelay(rand_ms); #endif /* CONFIG_BOOTP_RANDOM_DELAY */ |
