diff options
author | Joe Perches <joe@perches.com> | 2010-04-26 20:50:58 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-27 15:53:30 -0400 |
commit | d328bc839eac685cdd91f5d9d8ad95c070252038 (patch) | |
tree | 29554a44d55d4b8433ed525556412eb9f3bee910 /drivers/net/ixgb/ixgb.h | |
parent | c0dfb90e5b2d41c907de9b624657a6688541837e (diff) |
ixgb: Use pr_<level> and netdev_<level>
Convert DEBUGOUTx to pr_debug
Convert DEBUGFUNC to more commonly used ENTER
Convert mac address output to %pM
Use #define pr_fmt
Convert a few printks to pr_<level>
Improve ixgb_mc_addr_list_update: use a temporary for current mc address
Use etherdevice.h functions for mac address testing
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgb/ixgb.h')
-rw-r--r-- | drivers/net/ixgb/ixgb.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/net/ixgb/ixgb.h b/drivers/net/ixgb/ixgb.h index 92d2e71d0c8b..521c0c732998 100644 --- a/drivers/net/ixgb/ixgb.h +++ b/drivers/net/ixgb/ixgb.h | |||
@@ -78,9 +78,13 @@ struct ixgb_adapter; | |||
78 | #define PFX "ixgb: " | 78 | #define PFX "ixgb: " |
79 | 79 | ||
80 | #ifdef _DEBUG_DRIVER_ | 80 | #ifdef _DEBUG_DRIVER_ |
81 | #define IXGB_DBG(args...) printk(KERN_DEBUG PFX args) | 81 | #define IXGB_DBG(fmt, args...) printk(KERN_DEBUG PFX fmt, ##args) |
82 | #else | 82 | #else |
83 | #define IXGB_DBG(args...) | 83 | #define IXGB_DBG(fmt, args...) \ |
84 | do { \ | ||
85 | if (0) \ | ||
86 | printk(KERN_DEBUG PFX fmt, ##args); \ | ||
87 | } while (0) | ||
84 | #endif | 88 | #endif |
85 | 89 | ||
86 | /* TX/RX descriptor defines */ | 90 | /* TX/RX descriptor defines */ |