Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935378AbXEUTve (ORCPT ); Mon, 21 May 2007 15:51:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S934096AbXEUT3W (ORCPT ); Mon, 21 May 2007 15:29:22 -0400 Received: from 216-99-217-87.dsl.aracnet.com ([216.99.217.87]:52645 "EHLO sous-sol.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934088AbXEUT3V (ORCPT ); Mon, 21 May 2007 15:29:21 -0400 Message-Id: <20070521191643.450300000@sous-sol.org> References: <20070521191612.800400000@sous-sol.org> User-Agent: quilt/0.46-1 Date: Mon, 21 May 2007 12:16:15 -0700 From: Chris Wright To: linux-kernel@vger.kernel.org, stable@kernel.org Cc: Justin Forbes , Zwane Mwaikambo , "Theodore Ts'o" , Randy Dunlap , Dave Jones , Chuck Wolber , Chris Wedgwood , Michael Krufky , Chuck Ebbert , torvalds@linux-foundation.org, akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk, Jeff Garzik , vwool@ru.mvista.com, dustin@sensoria.com, Vitaly Wool Subject: [patch 03/69] smc911x: fix compilation breakage wjen debug is on Content-Disposition: inline; filename=smc911x-fix-compilation-breakage-wjen-debug-is-on.patch Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1160 Lines: 33 -stable review patch. If anyone has any objections, please let us know. --------------------- From: Vitaly Wool the patch below fixes compilation breakage of smc911x driver when ENABLE_SMC_DEBUG_PKTS equals to 1. Signed-off-by: Vitaly Wool Signed-off-by: Chris Wright --- drivers/net/smc911x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-2.6.21.1.orig/drivers/net/smc911x.c +++ linux-2.6.21.1/drivers/net/smc911x.c @@ -499,7 +499,7 @@ static inline void smc911x_rcv(struct n 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->dev = dev; -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/