Date: Sat, 18 Nov 1995 18:25:18 +0900 From: hosokawa@mt.cs.keio.ac.jp (HOSOKAWA Tatsumi) To: freebsd-hackers@freebsd.org Subject: zp hangs up on some machines with APM Message-ID: <199511180925.SAA25384@remington.mt.cs.keio.ac.jp>
next in thread | raw e-mail | index | archive | help
Somebody reported on Japanese newsgroup about FreeBSD that zp hangs up on some machines when APM driver is configured. Following patch solves this problem. --- pcicx.c.orig Tue Oct 31 18:28:00 1995 +++ pcicx.c Sat Nov 18 18:22:06 1995 @@ -230,7 +230,7 @@ pcic_power_off (int slot) { pcic_putb (slot, PCIC_POWER, - pcic_getb (slot, PCIC_POWER) & ~(PCIC_OUTENA|PCIC_PCPWRE)); + pcic_getb (slot, PCIC_POWER) & ~PCIC_PCPWRE); } void -- HOSOKAWA, Tatsumi E-mail: hosokawa@mt.cs.keio.ac.jp WWW homepage: http://www.mt.cs.keio.ac.jp/person/hosokawa.html Department of Computer Science, Keio University, Yokohama, Japan
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199511180925.SAA25384>