diff options
author | Vitaly Wool <vwool@ru.mvista.com> | 2007-04-27 14:42:09 +0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-04-28 11:34:30 -0400 |
commit | b4cf205846463a0a23a917bb18ad833bc9a8c0bb (patch) | |
tree | 58fdf5fd2d0c9e08fe68a1e0b00cb92b41435e92 | |
parent | 1c0d6dcf885badc72f72bfba9bc5b4f1469b8501 (diff) | |
download | op-kernel-dev-b4cf205846463a0a23a917bb18ad833bc9a8c0bb.zip op-kernel-dev-b4cf205846463a0a23a917bb18ad833bc9a8c0bb.tar.gz |
smc911x: fix compilation breakage wjen debug is on
the patch below fixes compilation breakage of smc911x driver when
ENABLE_SMC_DEBUG_PKTS equals to 1.
Signed-off-by: Vitaly Wool <vitalywool@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r-- | drivers/net/smc911x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c index 8a2109a..81f2484 100644 --- a/drivers/net/smc911x.c +++ b/drivers/net/smc911x.c @@ -499,7 +499,7 @@ static inline void smc911x_rcv(struct net_device *dev) SMC_SET_RX_CFG(RX_CFG_RX_END_ALGN4_ | ((2<<8) & RX_CFG_RXDOFF_)); SMC_PULL_DATA(data, pkt_len+2+3); - DBG(SMC_DEBUG_PKTS, "%s: Received packet\n", dev->name,); + DBG(SMC_DEBUG_PKTS, "%s: Received packet\n", dev->name); PRINT_PKT(data, ((pkt_len - 4) <= 64) ? pkt_len - 4 : 64); dev->last_rx = jiffies; skb->protocol = eth_type_trans(skb, dev); |