s2io: Formatting log message
S2IO driver is printing dev->name before the name being allocated, which display eth%d instead of eth0, eth1, etc. Example: eth%d: Enabling MSIX failed eth%d: MSI-X requested but failed to enable This patch just change eth%d to s2io. Signed-off-by: Breno Leitao <leitao@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
3834507d0c
commit
073a24364f
@@ -3862,7 +3862,7 @@ static int s2io_enable_msi_x(struct s2io_nic *nic)
|
|||||||
ret = pci_enable_msix(nic->pdev, nic->entries, nic->num_entries);
|
ret = pci_enable_msix(nic->pdev, nic->entries, nic->num_entries);
|
||||||
/* We fail init if error or we get less vectors than min required */
|
/* We fail init if error or we get less vectors than min required */
|
||||||
if (ret) {
|
if (ret) {
|
||||||
DBG_PRINT(ERR_DBG, "%s: Enabling MSIX failed\n", nic->dev->name);
|
DBG_PRINT(ERR_DBG, "s2io: Enabling MSI-X failed\n");
|
||||||
kfree(nic->entries);
|
kfree(nic->entries);
|
||||||
nic->mac_control.stats_info->sw_stat.mem_freed
|
nic->mac_control.stats_info->sw_stat.mem_freed
|
||||||
+= (nic->num_entries * sizeof(struct msix_entry));
|
+= (nic->num_entries * sizeof(struct msix_entry));
|
||||||
@@ -8010,8 +8010,7 @@ s2io_init_nic(struct pci_dev *pdev, const struct pci_device_id *pre)
|
|||||||
if (ret) {
|
if (ret) {
|
||||||
|
|
||||||
DBG_PRINT(ERR_DBG,
|
DBG_PRINT(ERR_DBG,
|
||||||
"%s: MSI-X requested but failed to enable\n",
|
"s2io: MSI-X requested but failed to enable\n");
|
||||||
dev->name);
|
|
||||||
sp->config.intr_type = INTA;
|
sp->config.intr_type = INTA;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user