Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 73413ffa authored by Yijing Wang's avatar Yijing Wang Committed by David S. Miller
Browse files

bnx2x: Fix the MSI flags



MSI-X should use PCI_MSIX_FLAGS not PCI_MSI_FLAGS.

Signed-off-by: default avatarYijing Wang <wangyijing@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d7933ab7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12937,7 +12937,7 @@ static int bnx2x_get_num_non_def_sbs(struct pci_dev *pdev, int cnic_cnt)
	 * without the default SB.
	 * For VFs there is no default SB, then we return (index+1).
	 */
	pci_read_config_word(pdev, pdev->msix_cap + PCI_MSI_FLAGS, &control);
	pci_read_config_word(pdev, pdev->msix_cap + PCI_MSIX_FLAGS, &control);

	index = control & PCI_MSIX_FLAGS_QSIZE;