summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2010-12-03 21:55:59 +0100
committerMichael Brown2010-12-09 14:07:30 +0100
commit88b9b776cfe29ef6b1b4411bca89bac6000e44c5 (patch)
tree27fcc68e67259555db4e736abed7cc726f9b4d89
parent[legal] Add FILE_LICENCE macro to some GPL-v2-or-later files (diff)
downloadipxe-88b9b776cfe29ef6b1b4411bca89bac6000e44c5.tar.gz
ipxe-88b9b776cfe29ef6b1b4411bca89bac6000e44c5.tar.xz
ipxe-88b9b776cfe29ef6b1b4411bca89bac6000e44c5.zip
[r8169] Disabling IRQs should not also acknowledge the IRQs
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r--src/drivers/net/r8169.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/net/r8169.c b/src/drivers/net/r8169.c
index 4307552e..5c5fbab5 100644
--- a/src/drivers/net/r8169.c
+++ b/src/drivers/net/r8169.c
@@ -1832,7 +1832,7 @@ static void rtl8169_irq_disable ( struct rtl8169_private *tp )
DBGP ( "rtl8169_irq_disable\n" );
- rtl8169_irq_mask_and_ack ( ioaddr );
+ RTL_W16 ( IntrMask, 0x0000 );
}
/*** iPXE Core API Routines ***/