diff options
author | Joe Perches <joe@perches.com> | 2009-08-25 04:52:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-08-31 01:35:11 -0400 |
commit | 9e39f7c5b311a306977c5471f9e2ce4c456aa038 (patch) | |
tree | 3d76af2016c6991ec0d3785eb0890959d73b7ae2 /drivers/net/s2io.h | |
parent | 82c2d02356229c66daa6b6e51f8da559327b87b0 (diff) |
s2io: Generate complete messages using single line DBG_PRINTs
Single line log messages should be emitted by a single call
where possible.
Converted multiple calls to DBG_PRINT to single call form.
Removed "s2io:" preface from DBG_PRINTs.
The DBG_PRINT macro now emits a log level and is surrounded by
a do {...} while (0)
All s2io log output is now prefaced with KBUILD_MODNAME ": "
via pr_fmt.
The DBG_PRINT macro should probably be converted to use the
dev_<level> form eventually.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/s2io.h')
-rw-r--r-- | drivers/net/s2io.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/s2io.h b/drivers/net/s2io.h index d5c5be6c07b9..47c36e0994f5 100644 --- a/drivers/net/s2io.h +++ b/drivers/net/s2io.h | |||
@@ -64,7 +64,10 @@ enum { | |||
64 | static int debug_level = ERR_DBG; | 64 | static int debug_level = ERR_DBG; |
65 | 65 | ||
66 | /* DEBUG message print. */ | 66 | /* DEBUG message print. */ |
67 | #define DBG_PRINT(dbg_level, args...) if(!(debug_level<dbg_level)) printk(args) | 67 | #define DBG_PRINT(dbg_level, fmt, args...) do { \ |
68 | if (dbg_level >= debug_level) \ | ||
69 | pr_info(fmt, ##args); \ | ||
70 | } while (0) | ||
68 | 71 | ||
69 | /* Protocol assist features of the NIC */ | 72 | /* Protocol assist features of the NIC */ |
70 | #define L3_CKSUM_OK 0xFFFF | 73 | #define L3_CKSUM_OK 0xFFFF |