Skip to content
Commit d4f90d9d authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Jeff Kirsher
Browse files

ixgbe: use msleep for long delays



The newly added x550em_a support causes a link failure on ARM because of
an overly long time passed into udelay():

ERROR: "__bad_udelay" [drivers/net/ethernet/intel/ixgbe/ixgbe.ko] undefined!

There are multiple variants of the ixgbe_acquire_swfw_sync_*() function,
and the other ones all use msleep(), so we can safely assume that all
callers are allowed to sleep, which makes msleep() a better replacement
than mdelay().

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Fixes: 49425dfc

 ("ixgbe: Add support for x550em_a 10G MAC type")
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 7921f4dc
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment