git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8eba25e
)
net/bnx2x: remove delay during device startup
author
Chas Williams
<3chas3@gmail.com>
Tue, 11 Oct 2016 23:04:54 +0000
(19:04 -0400)
committer
Bruce Richardson
<bruce.richardson@intel.com>
Thu, 13 Oct 2016 13:30:59 +0000
(15:30 +0200)
This 2.5s delay doesn't seem to serve any purpose other than a being a
pause after logging the device configuration.
Fixes:
540a211084a7
("bnx2x: driver core")
Signed-off-by: Chas Williams <3chas3@gmail.com>
Acked-by: Harish Patil <harish.patil@qlogic.com>
drivers/net/bnx2x/bnx2x_ethdev.c
patch
|
blob
|
history
diff --git
a/drivers/net/bnx2x/bnx2x_ethdev.c
b/drivers/net/bnx2x/bnx2x_ethdev.c
index
e38c238
..
b975e99
100644
(file)
--- a/
drivers/net/bnx2x/bnx2x_ethdev.c
+++ b/
drivers/net/bnx2x/bnx2x_ethdev.c
@@
-203,8
+203,6
@@
bnx2x_dev_start(struct rte_eth_dev *dev)
/* Print important adapter info for the user. */
bnx2x_print_adapter_info(sc);
- DELAY_MS(2500);
-
return ret;
}