All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH next-20080704] Fix compile error in drivers/net/mv643xx_eth.c
@ 2008-07-04 16:32 Takashi Iwai
  2008-07-04 16:49 ` Lennert Buytenhek
  0 siblings, 1 reply; 3+ messages in thread
From: Takashi Iwai @ 2008-07-04 16:32 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: Lennert Buytenhek, linux-next, LKML

drivers/net/mv643xx_eth.c: In function 'mv643xx_eth_netpoll':
drivers/net/mv643xx_eth.c:2115: error: 'INT_CAUSE_EXT' undeclared (first use in this function)
drivers/net/mv643xx_eth.c:2115: error: (Each undeclared identifier is reported only once
drivers/net/mv643xx_eth.c:2115: error: for each function it appears in.

Signed-off-by: Takashi Iwai <tiwai@suse.de>

---
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c
index 83a877f..cb2c065 100644
--- a/drivers/net/mv643xx_eth.c
+++ b/drivers/net/mv643xx_eth.c
@@ -2112,7 +2112,8 @@ static void mv643xx_eth_netpoll(struct net_device *dev)
 
 	mv643xx_eth_irq(dev->irq, dev);
 
-	wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_CAUSE_EXT);
+	wrl(mp, INT_MASK(mp->port_num),
+	    INT_TX_END | INT_RX | INT_CAUSE_EXT(mp->port_num));
 }
 #endif
 

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-07-04 18:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-04 16:32 [PATCH next-20080704] Fix compile error in drivers/net/mv643xx_eth.c Takashi Iwai
2008-07-04 16:49 ` Lennert Buytenhek
2008-07-04 18:49   ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.