Commit 6ed4babe authored by Sasha Neftin's avatar Sasha Neftin Committed by Jeff Kirsher

igc: Remove obsolete IGC_ERR define

Address community comment.
Remove obsolete IGC_ERR define and use dev_err method.
Suggested by Joe Perches.
Signed-off-by: default avatarSasha Neftin <sasha.neftin@intel.com>
Tested-by: default avatarAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 8166abb1
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
#include <linux/ethtool.h> #include <linux/ethtool.h>
#include <linux/sctp.h> #include <linux/sctp.h>
#define IGC_ERR(args...) pr_err("igc: " args)
#include "igc_hw.h" #include "igc_hw.h"
/* main */ /* main */
......
...@@ -3535,7 +3535,7 @@ static int igc_probe(struct pci_dev *pdev, ...@@ -3535,7 +3535,7 @@ static int igc_probe(struct pci_dev *pdev,
err = dma_set_coherent_mask(&pdev->dev, err = dma_set_coherent_mask(&pdev->dev,
DMA_BIT_MASK(32)); DMA_BIT_MASK(32));
if (err) { if (err) {
IGC_ERR("Wrong DMA configuration, aborting\n"); dev_err(&pdev->dev, "igc: Wrong DMA config\n");
goto err_dma; goto err_dma;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment