diff mbox series

[03/30] net: eepro100: Use plain debug()

Message ID 20200523163837.407592-3-marek.vasut+renesas@gmail.com
State New
Headers show
Series [01/30] net: eepro100: Remove EEPRO100_SROM_WRITE | expand

Commit Message

Marek Vasut May 23, 2020, 4:38 p.m. UTC
Convert all the ifdef DEBUG to plain debug(), no functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas at gmail.com>
---
 drivers/net/eepro100.c | 15 ++++-----------
 1 file changed, 4 insertions(+), 11 deletions(-)

Comments

Ramon Fried May 23, 2020, 5:12 p.m. UTC | #1
On Sat, May 23, 2020 at 7:40 PM Marek Vasut <marek.vasut at gmail.com> wrote:
>
> Convert all the ifdef DEBUG to plain debug(), no functional change.
>
> Signed-off-by: Marek Vasut <marek.vasut+renesas at gmail.com>
> ---
>  drivers/net/eepro100.c | 15 ++++-----------
>  1 file changed, 4 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/net/eepro100.c b/drivers/net/eepro100.c
> index 503c44af4c..dd902386b1 100644
> --- a/drivers/net/eepro100.c
> +++ b/drivers/net/eepro100.c
> @@ -13,8 +13,6 @@
>  #include <miiphy.h>
>  #include <linux/delay.h>
>
> -#undef DEBUG
> -
>  /* Ethernet chip registers. */
>  #define SCBStatus              0       /* Rx/Command Unit Status *Word* */
>  #define SCBIntAckByte          1       /* Rx/Command Unit STAT/ACK byte */
> @@ -392,10 +390,8 @@ int eepro100_initialize (bd_t * bis)
>                 pci_read_config_dword (devno, PCI_BASE_ADDRESS_0, &iobase);
>                 iobase &= ~0xf;
>
> -#ifdef DEBUG
> -               printf ("eepro100: Intel i82559 PCI EtherExpressPro @0x%x\n",
> -                               iobase);
> -#endif
> +               debug("eepro100: Intel i82559 PCI EtherExpressPro @0x%x\n",
> +                     iobase);
>
>                 pci_write_config_dword (devno,
>                                         PCI_COMMAND,
> @@ -810,10 +806,7 @@ static void read_hw_addr (struct eth_device *dev, bd_t * bis)
>
>         if (sum != 0xBABA) {
>                 memset (dev->enetaddr, 0, ETH_ALEN);
> -#ifdef DEBUG
> -               printf ("%s: Invalid EEPROM checksum %#4.4x, "
> -                       "check settings before activating this device!\n",
> -                       dev->name, sum);
> -#endif
> +               debug("%s: Invalid EEPROM checksum %#4.4x, check settings before activating this device!\n",
> +                     dev->name, sum);
>         }
>  }
> --
> 2.25.1
>
Reviewed-By: Ramon Fried <rfried.dev at gmail.com
diff mbox series

Patch

diff --git a/drivers/net/eepro100.c b/drivers/net/eepro100.c
index 503c44af4c..dd902386b1 100644
--- a/drivers/net/eepro100.c
+++ b/drivers/net/eepro100.c
@@ -13,8 +13,6 @@ 
 #include <miiphy.h>
 #include <linux/delay.h>
 
-#undef DEBUG
-
 /* Ethernet chip registers. */
 #define SCBStatus		0	/* Rx/Command Unit Status *Word* */
 #define SCBIntAckByte		1	/* Rx/Command Unit STAT/ACK byte */
@@ -392,10 +390,8 @@  int eepro100_initialize (bd_t * bis)
 		pci_read_config_dword (devno, PCI_BASE_ADDRESS_0, &iobase);
 		iobase &= ~0xf;
 
-#ifdef DEBUG
-		printf ("eepro100: Intel i82559 PCI EtherExpressPro @0x%x\n",
-				iobase);
-#endif
+		debug("eepro100: Intel i82559 PCI EtherExpressPro @0x%x\n",
+		      iobase);
 
 		pci_write_config_dword (devno,
 					PCI_COMMAND,
@@ -810,10 +806,7 @@  static void read_hw_addr (struct eth_device *dev, bd_t * bis)
 
 	if (sum != 0xBABA) {
 		memset (dev->enetaddr, 0, ETH_ALEN);
-#ifdef DEBUG
-		printf ("%s: Invalid EEPROM checksum %#4.4x, "
-			"check settings before activating this device!\n",
-			dev->name, sum);
-#endif
+		debug("%s: Invalid EEPROM checksum %#4.4x, check settings before activating this device!\n",
+		      dev->name, sum);
 	}
 }