diff options
author | Breno Leitao <leitao@linux.vnet.ibm.com> | 2010-07-26 15:37:30 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-26 15:37:30 -0700 |
commit | 5447080cfa3c77154498dfbf225367ac85b4c2b5 (patch) | |
tree | 08fd9ef4a2f96948cfbaff6d6fcfb90da663d32c | |
parent | a9ad99a612763803b995ce551ca43b20beb1f888 (diff) | |
download | linux-3.10-5447080cfa3c77154498dfbf225367ac85b4c2b5.tar.gz linux-3.10-5447080cfa3c77154498dfbf225367ac85b4c2b5.tar.bz2 linux-3.10-5447080cfa3c77154498dfbf225367ac85b4c2b5.zip |
s2io: fixing DBG_PRINT() macro
Patch 9e39f7c5b311a306977c5471f9e2ce4c456aa038 changed the
DBG_PRINT() macro and the if clause was wrongly changed. It means
that currently all the DBG_PRINT are being printed, flooding the
kernel log buffer with things like:
s2io: eth6: Next block at: c0000000b9c90000
s2io: eth6: In Neterion Tx routine
Signed-off-by: Breno Leitao <leitao@linux.vnet.ibm.com>
Acked-by: Sreenivasa Honnur <Sreenivasa.Honnur@neterion.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/s2io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/s2io.h b/drivers/net/s2io.h index 5e52c75892d..7f3a53dcc6e 100644 --- a/drivers/net/s2io.h +++ b/drivers/net/s2io.h @@ -65,7 +65,7 @@ static int debug_level = ERR_DBG; /* DEBUG message print. */ #define DBG_PRINT(dbg_level, fmt, args...) do { \ - if (dbg_level >= debug_level) \ + if (dbg_level <= debug_level) \ pr_info(fmt, ##args); \ } while (0) |