mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
The "unsigned" type is the same like "unsigned int".
MFC after: 1 week Sponsored by: Mellanox Technologies // NVIDIA Networking
This commit is contained in:
parent
87b3c8cc99
commit
82c7abe778
1 changed files with 1 additions and 1 deletions
|
|
@ -708,7 +708,7 @@ static int wait_fw_init(struct mlx5_core_dev *dev, u32 max_wait_mili,
|
|||
if (warn_time_mili && time_after(jiffies, warn)) {
|
||||
mlx5_core_warn(dev,
|
||||
"Waiting for FW initialization, timeout abort in %u s\n",
|
||||
(unsigned int)(jiffies_to_msecs(end - warn) / 1000));
|
||||
(unsigned)(jiffies_to_msecs(end - warn) / 1000));
|
||||
warn = jiffies + msecs_to_jiffies(warn_time_mili);
|
||||
}
|
||||
msleep(FW_INIT_WAIT_MS);
|
||||
|
|
|
|||
Loading…
Reference in a new issue