diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-08-24 12:25:44 +0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-08-24 12:25:54 +0200 | 
| commit | 5f9ece02401116b29eb04396b99ea092acb75dd8 (patch) | |
| tree | e10386e2dc63c275646b4eb0bed857da7bf86c6a /drivers/net/r6040.c | |
| parent | 9f51e24ee8b5a1595b6a5ac0c2be278a16488e75 (diff) | |
| parent | 422bef879e84104fee6dc68ded0e371dbeb5f88e (diff) | |
| download | olio-linux-3.10-5f9ece02401116b29eb04396b99ea092acb75dd8.tar.xz olio-linux-3.10-5f9ece02401116b29eb04396b99ea092acb75dd8.zip  | |
Merge commit 'v2.6.31-rc7' into x86/cleanups
Merge reason: we were on -rc1 before - go up to -rc7
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/net/r6040.c')
| -rw-r--r-- | drivers/net/r6040.c | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/net/r6040.c b/drivers/net/r6040.c index ed63d23a645..961b5397a53 100644 --- a/drivers/net/r6040.c +++ b/drivers/net/r6040.c @@ -49,8 +49,8 @@  #include <asm/processor.h>  #define DRV_NAME	"r6040" -#define DRV_VERSION	"0.23" -#define DRV_RELDATE	"05May2009" +#define DRV_VERSION	"0.24" +#define DRV_RELDATE	"08Jul2009"  /* PHY CHIP Address */  #define PHY1_ADDR	1	/* For MAC1 */ @@ -704,8 +704,11 @@ static irqreturn_t r6040_interrupt(int irq, void *dev_id)  	/* Read MISR status and clear */  	status = ioread16(ioaddr + MISR); -	if (status == 0x0000 || status == 0xffff) +	if (status == 0x0000 || status == 0xffff) { +		/* Restore RDC MAC interrupt */ +		iowrite16(misr, ioaddr + MIER);  		return IRQ_NONE; +	}  	/* RX interrupt request */  	if (status & RX_INTS) {  |