[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080908050256.11555.34058.sendpatchset@rx1.opensource.se>
Date: Mon, 08 Sep 2008 14:02:56 +0900
From: Magnus Damm <magnus.damm@...il.com>
To: netdev@...r.kernel.org
Cc: eric.miao@...vell.com, Magnus Damm <magnus.damm@...il.com>,
nico@....org
Subject: [PATCH] smc91x: fix nowait printout
From: Magnus Damm <damm@...l.co.jp>
Commit c4f0e76747e80578a8f7fddd82fd0ce8127bd2f8 added nowait platform
data support. The printout code was however not updated, so the value
of SMC_NOWAIT is still used. This patch makes sure that nowait is printed
accordingly to platform data.
Signed-off-by: Magnus Damm <damm@...l.co.jp>
---
drivers/net/smc91x.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--- 0001/drivers/net/smc91x.c
+++ work/drivers/net/smc91x.c 2008-09-03 18:42:56.000000000 +0900
@@ -1961,7 +1961,8 @@ static int __init smc_probe(struct net_d
if (dev->dma != (unsigned char)-1)
printk(" DMA %d", dev->dma);
- printk("%s%s\n", nowait ? " [nowait]" : "",
+ printk("%s%s\n",
+ lp->cfg.flags & SMC91X_NOWAIT ? " [nowait]" : "",
THROTTLE_TX_PKTS ? " [throttle_tx]" : "");
if (!is_valid_ether_addr(dev->dev_addr)) {
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists