mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-10 11:30:49 +00:00
qlcnic: Log warning message for 83xx adapter in MSI mode.
o 83xx adapter does not support MSI interrupts, display warning whenever module parameter is used to load driver in MSI mode. Signed-off-by: Himanshu Madhani <himanshu.madhani@qlogic.com> Signed-off-by: Shahed Shaikh <shahed.shaikh@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e2ab123349
commit
460374f78f
@ -1923,6 +1923,12 @@ qlcnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
module_name(THIS_MODULE),
|
||||
board_name, adapter->ahw->revision_id);
|
||||
}
|
||||
|
||||
if (qlcnic_83xx_check(adapter) && !qlcnic_use_msi_x &&
|
||||
!!qlcnic_use_msi)
|
||||
dev_warn(&pdev->dev,
|
||||
"83xx adapter do not support MSI interrupts\n");
|
||||
|
||||
err = qlcnic_setup_intr(adapter, 0);
|
||||
if (err) {
|
||||
dev_err(&pdev->dev, "Failed to setup interrupt\n");
|
||||
|
Loading…
Reference in New Issue
Block a user