aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2018-01-01 14:56:55 -0500
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2018-01-24 15:27:48 -0500
commit13169bad2b91cc37db5e0a9a9fa70e03bd1afd2d (patch)
treec0918e16b20125c4317924b95605d8c8a6b9a4da
parent888f22931478a05bc81ceb7295c626e1292bf0ed (diff)
igb: Delete an error message for a failed memory allocation in igb_enable_sriov()
Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
-rw-r--r--drivers/net/ethernet/intel/igb/igb_main.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
index ac83de48a4d3..b88fae785369 100644
--- a/drivers/net/ethernet/intel/igb/igb_main.c
+++ b/drivers/net/ethernet/intel/igb/igb_main.c
@@ -3214,8 +3214,6 @@ static int igb_enable_sriov(struct pci_dev *pdev, int num_vfs)
3214 /* if allocation failed then we do not support SR-IOV */ 3214 /* if allocation failed then we do not support SR-IOV */
3215 if (!adapter->vf_data) { 3215 if (!adapter->vf_data) {
3216 adapter->vfs_allocated_count = 0; 3216 adapter->vfs_allocated_count = 0;
3217 dev_err(&pdev->dev,
3218 "Unable to allocate memory for VF Data Storage\n");
3219 err = -ENOMEM; 3217 err = -ENOMEM;
3220 goto out; 3218 goto out;
3221 } 3219 }