ixgbe/base: wait longer while polling X540 flash update

It need wait for 5 ms for polling EEC register in IXGBE X540 base code.

Signed-off-by: Changchun Ouyang <changchun.ouyang@intel.com>
This commit is contained in:
Ouyang Changchun 2014-09-29 15:16:18 +08:00 committed by Thomas Monjalon
parent 6a236f9625
commit dc7508f1fa

View File

@ -726,7 +726,7 @@ STATIC s32 ixgbe_poll_flash_update_done_X540(struct ixgbe_hw *hw)
status = IXGBE_SUCCESS;
break;
}
usec_delay(5);
msec_delay(5);
}
if (i == IXGBE_FLUDONE_ATTEMPTS)