From: Chas Williams <3chas3@gmail.com> Date: Tue, 11 Oct 2016 23:04:54 +0000 (-0400) Subject: net/bnx2x: remove delay during device startup X-Git-Tag: spdx-start~5543 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=43b18f954462f0da7ad2da7b647e4450b76251ac;p=dpdk.git net/bnx2x: remove delay during device startup 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 --- diff --git a/drivers/net/bnx2x/bnx2x_ethdev.c b/drivers/net/bnx2x/bnx2x_ethdev.c index e38c238608..b975e99180 100644 --- 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; }