~kris/9p

9hist

4823f3c55dd474f565dc48c812c6de56aa791147 — David du Colombier 31 years ago 976cdcf
Plan 9 from Bell Labs 1995-07-06
1 files changed, 3 insertions(+), 2 deletions(-)

M pc/ether509.c
M pc/ether509.c => pc/ether509.c +3 -2
@@ 122,10 122,11 @@ attach(Ether *ether)
	 * The only interrupt we should see under normal conditions
	 * is the receiver interrupt. If the transmit FIFO fills up,
	 * we will also see TxAvailable interrupts.
	 * Disable Update interrupts for now.
	 */
	COMMAND(port, SetRxFilter, Broadcast|MyEtherAddr);
	COMMAND(port, SetReadZeroMask, AllIntr|Latch);
	COMMAND(port, SetIntrMask, AllIntr|Latch);
	COMMAND(port, SetReadZeroMask, (AllIntr|Latch) & ~Update);
	COMMAND(port, SetIntrMask, (AllIntr|Latch) & ~Update);
	COMMAND(port, RxEnable, 0);
	COMMAND(port, TxEnable, 0);
}