diff mbox series

[2/2] igc: Remove obsolete IGC_ERR define

Message ID 20181112090520.31496-1-sasha.neftin@intel.com
State Accepted
Delegated to: Jeff Kirsher
Headers show
Series None | expand

Commit Message

Sasha Neftin Nov. 12, 2018, 9:05 a.m. UTC
Address community comment.
Remove obsolete IGC_ERR define and use dev_err method.
Suggested by Joe Perches.

Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
---
 drivers/net/ethernet/intel/igc/igc.h      | 2 --
 drivers/net/ethernet/intel/igc/igc_main.c | 2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)

Comments

Kirsher, Jeffrey T Nov. 12, 2018, 5:13 p.m. UTC | #1
On Mon, 2018-11-12 at 11:05 +0200, Sasha Neftin wrote:
> Address community comment.
> Remove obsolete IGC_ERR define and use dev_err method.
> Suggested by Joe Perches.
> 
> Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
> ---
>  drivers/net/ethernet/intel/igc/igc.h      | 2 --
>  drivers/net/ethernet/intel/igc/igc_main.c | 2 +-
>  2 files changed, 1 insertion(+), 3 deletions(-)

Was there supposed to be a patch 1/2?  The title of this patch would
lead me to believe that there was another patch in this series that I
am missing.  Is the patch title a typo?
Brown, Aaron F Nov. 19, 2018, 7:27 p.m. UTC | #2
> From: Intel-wired-lan [mailto:intel-wired-lan-bounces@osuosl.org] On
> Behalf Of Sasha Neftin
> Sent: Monday, November 12, 2018 1:05 AM
> To: intel-wired-lan@lists.osuosl.org
> Subject: [Intel-wired-lan] [PATCH 2/2] 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: Sasha Neftin <sasha.neftin@intel.com>
> ---
>  drivers/net/ethernet/intel/igc/igc.h      | 2 --
>  drivers/net/ethernet/intel/igc/igc_main.c | 2 +-
>  2 files changed, 1 insertion(+), 3 deletions(-)

Tested-by: Aaron Brown <aaron.f.brown@intel.com>
diff mbox series

Patch

diff --git a/drivers/net/ethernet/intel/igc/igc.h b/drivers/net/ethernet/intel/igc/igc.h
index 3b00b109b34a..b1039dd3dd13 100644
--- a/drivers/net/ethernet/intel/igc/igc.h
+++ b/drivers/net/ethernet/intel/igc/igc.h
@@ -11,8 +11,6 @@ 
 #include <linux/ethtool.h>
 #include <linux/sctp.h>
 
-#define IGC_ERR(args...) pr_err("igc: " args)
-
 #include "igc_hw.h"
 
 /* main */
diff --git a/drivers/net/ethernet/intel/igc/igc_main.c b/drivers/net/ethernet/intel/igc/igc_main.c
index eb11e8dbf0b2..4024eb1d700f 100644
--- a/drivers/net/ethernet/intel/igc/igc_main.c
+++ b/drivers/net/ethernet/intel/igc/igc_main.c
@@ -3536,7 +3536,7 @@  static int igc_probe(struct pci_dev *pdev,
 			err = dma_set_coherent_mask(&pdev->dev,
 						    DMA_BIT_MASK(32));
 			if (err) {
-				IGC_ERR("Wrong DMA configuration, aborting\n");
+				dev_err(&pdev->dev, "igc: Wrong DMA config\n");
 				goto err_dma;
 			}
 		}