public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ixgb:  Delete IXGB_DBG() macro and call pr_debug() directly.
@ 2006-10-10 11:59 Robert P. J. Day
  2006-10-10 12:12 ` Andreas Schwab
  0 siblings, 1 reply; 9+ messages in thread
From: Robert P. J. Day @ 2006-10-10 11:59 UTC (permalink / raw)
  To: Linux kernel mailing list; +Cc: trivial

Remove the minimally-useful definition of IXGB_DBG() and have
ixgb_main.c call pr_debug() directly.

Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
---
diff --git a/drivers/net/ixgb/ixgb.h b/drivers/net/ixgb/ixgb.h
index 50ffe90..fb9fde5 100644
--- a/drivers/net/ixgb/ixgb.h
+++ b/drivers/net/ixgb/ixgb.h
@@ -77,12 +77,6 @@ #include "ixgb_hw.h"
 #include "ixgb_ee.h"
 #include "ixgb_ids.h"

-#ifdef _DEBUG_DRIVER_
-#define IXGB_DBG(args...) printk(KERN_DEBUG "ixgb: " args)
-#else
-#define IXGB_DBG(args...)
-#endif
-
 #define PFX "ixgb: "
 #define DPRINTK(nlevel, klevel, fmt, args...) \
 	(void)((NETIF_MSG_##nlevel & adapter->msg_enable) && \
diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c
index e09f575..d063e84 100644
--- a/drivers/net/ixgb/ixgb_main.c
+++ b/drivers/net/ixgb/ixgb_main.c
@@ -1948,7 +1948,7 @@ #endif

 			/* All receives must fit into a single buffer */

-			IXGB_DBG("Receive packet consumed multiple buffers "
+			pr_debug("Receive packet consumed multiple buffers "
 					 "length<%x>\n", length);

 			dev_kfree_skb_irq(skb);

--

  ok, one more time ...

rday

^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [PATCH] ixgb: Delete IXGB_DBG() macro and call pr_debug() directly.
@ 2006-10-10 12:19 Robert P. J. Day
  2006-10-10 16:14 ` Auke Kok
  0 siblings, 1 reply; 9+ messages in thread
From: Robert P. J. Day @ 2006-10-10 12:19 UTC (permalink / raw)
  To: Linux kernel mailing list; +Cc: trivial


Delete the minimally-useful IXGB_DBG() macro and call pr_debug()
directly from the main routine.

Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
---
diff --git a/drivers/net/ixgb/ixgb.h b/drivers/net/ixgb/ixgb.h
index 50ffe90..fb9fde5 100644
--- a/drivers/net/ixgb/ixgb.h
+++ b/drivers/net/ixgb/ixgb.h
@@ -77,12 +77,6 @@ #include "ixgb_hw.h"
 #include "ixgb_ee.h"
 #include "ixgb_ids.h"

-#ifdef _DEBUG_DRIVER_
-#define IXGB_DBG(args...) printk(KERN_DEBUG "ixgb: " args)
-#else
-#define IXGB_DBG(args...)
-#endif
-
 #define PFX "ixgb: "
 #define DPRINTK(nlevel, klevel, fmt, args...) \
 	(void)((NETIF_MSG_##nlevel & adapter->msg_enable) && \
diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c
index e09f575..eada685 100644
--- a/drivers/net/ixgb/ixgb_main.c
+++ b/drivers/net/ixgb/ixgb_main.c
@@ -1948,7 +1948,7 @@ #endif

 			/* All receives must fit into a single buffer */

-			IXGB_DBG("Receive packet consumed multiple buffers "
+			pr_debug("ixgb: Receive packet consumed multiple buffers "
 					 "length<%x>\n", length);

 			dev_kfree_skb_irq(skb);

--

  all right ... what did i mess up *this* time?  :-)  it's good
practice.  that's my story and i'm sticking to it.

rday

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2006-10-10 18:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-10 11:59 [PATCH] ixgb: Delete IXGB_DBG() macro and call pr_debug() directly Robert P. J. Day
2006-10-10 12:12 ` Andreas Schwab
2006-10-10 12:15   ` Robert P. J. Day
  -- strict thread matches above, loose matches on Subject: below --
2006-10-10 12:19 Robert P. J. Day
2006-10-10 16:14 ` Auke Kok
2006-10-10 16:36   ` Robert P. J. Day
2006-10-10 16:50     ` Auke Kok
2006-10-10 17:51       ` Robert P. J. Day
2006-10-10 18:18         ` Auke Kok

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox