Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Dec 1995 13:18:16 +0900
From:      hosokawa@mt.cs.keio.ac.jp (HOSOKAWA Tatsumi)
To:        hm@altona.hamburg.com
Cc:        freebsd-hackers@freebsd.org, hosokawa@mt.cs.keio.ac.jp
Subject:   Re: APM resume not rx'd with 3Com589C in PCMCIA slot
Message-ID:  <199512060418.NAA05482@steyr.mt.cs.keio.ac.jp>
In-Reply-To: Your message of Mon, 4 Dec 1995 12:15:25 %2B0100 (MET). <m0tMYrl-00001nC@ernie.altona.hamburg.com>

next in thread | previous in thread | raw e-mail | index | archive | help
In article <m0tMYrl-00001nC@ernie.altona.hamburg.com>
hm@altona.hamburg.com writes:

>> delete the following statement on line 726 of function zp_suspend():
>> 
>> 	pcic_power_off(sc->slot);
>> 
>> After this modification, the machine is properly resumed after a suspend.

or, .....

Date: Sat, 18 Nov 1995 18:25:18 +0900
Message-Id: <199511180925.SAA25384@remington.mt.cs.keio.ac.jp>
To: freebsd-hackers@FreeBSD.ORG
Subject: zp hangs up on some machines with APM
From: hosokawa@mt.cs.keio.ac.jp (HOSOKAWA Tatsumi)
X-Mailer: mnews [version 1.18PL3] 1994-08/01(Mon)
Sender: owner-hackers@FreeBSD.ORG
Precedence: bulk

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?199512060418.NAA05482>