mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 08:43:31 +00:00
ixgbe: use e_dev_warn instead of netif_printk
Again, we should not be directly using netif_printk, as we have our own error print routines that we generate. In addition, instead of using an early return we can just use the else block of this one line if statement. Signed-off-by: Jacob Keller <jacob.e.keller@intel.com> Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
c1c55f63a5
commit
5d31b48a42
1 changed files with 5 additions and 7 deletions
|
@ -1130,13 +1130,11 @@ static void ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
|
|||
adapter->num_q_vectors = 1;
|
||||
|
||||
err = pci_enable_msi(adapter->pdev);
|
||||
if (err) {
|
||||
netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
|
||||
"Unable to allocate MSI interrupt, falling back to legacy. Error: %d\n",
|
||||
err);
|
||||
return;
|
||||
}
|
||||
adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
|
||||
if (err)
|
||||
e_dev_warn("Failed to allocate MSI interrupt, falling back to legacy. Error: %d\n",
|
||||
err);
|
||||
else
|
||||
adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue