diff options
author | David S. Miller <davem@davemloft.net> | 2010-07-28 00:01:35 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-28 00:01:35 -0400 |
commit | bb7e95c8fd859922c6cf3ebbb3a8546007df1748 (patch) | |
tree | 58b54c6306ba168b76f25cc6dc9a2d1d2eb830a7 /drivers/net/ixgbe/ixgbe_main.c | |
parent | b8bc0421ab7f83712a0a8ef7eb05fa73ec53c027 (diff) | |
parent | 5447080cfa3c77154498dfbf225367ac85b4c2b5 (diff) |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts:
drivers/net/bnx2x_main.c
Merge bnx2x bug fixes in by hand... :-/
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_main.c')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_main.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index e92acbf5a307..7d6a415bcf88 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
@@ -6539,6 +6539,15 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev, | |||
6539 | #endif | 6539 | #endif |
6540 | u32 part_num, eec; | 6540 | u32 part_num, eec; |
6541 | 6541 | ||
6542 | /* Catch broken hardware that put the wrong VF device ID in | ||
6543 | * the PCIe SR-IOV capability. | ||
6544 | */ | ||
6545 | if (pdev->is_virtfn) { | ||
6546 | WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n", | ||
6547 | pci_name(pdev), pdev->vendor, pdev->device); | ||
6548 | return -EINVAL; | ||
6549 | } | ||
6550 | |||
6542 | err = pci_enable_device_mem(pdev); | 6551 | err = pci_enable_device_mem(pdev); |
6543 | if (err) | 6552 | if (err) |
6544 | return err; | 6553 | return err; |