From owner-freebsd-mobile Wed Apr 26 22:56:46 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id B13E537B856 for ; Wed, 26 Apr 2000 22:56:43 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn26.imasy.or.jp [202.227.24.218]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.04) with ESMTP id OAA58364; Thu, 27 Apr 2000 14:56:38 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: winter@jurai.net Cc: iwasaki@jp.FreeBSD.org, mobile@FreeBSD.ORG Subject: Re: CFR: ex and fe driver PCCard support (Re: [Experimental patch] ex driver PCCard support) In-Reply-To: References: <20000427011230G.iwasaki@jp.FreeBSD.org> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000427145634U.iwasaki@jp.FreeBSD.org> Date: Thu, 27 Apr 2000 14:56:34 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 31 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, > > For ex driver, many bug-fixes have been made. It works just fine so far. > > I'll commit this in a slightly altered form (PCCARD bits in their own > file) after I split out the ISA specific stuff. Thanks. I've one more request for you. Sanpei-san have reported some ed cards have hangup problem with ed PCcard probing. He suggested deleting ed_probe_WD80x3() because it seems none of cards were detected by ed_probe_WD80x3(), PAO3 has no this already. I would like to suggest changing prove order of ed_probe_Novell() and ed_probe_WD80x3() for safty. Could you please consider this patch? --- if_ed_pccard.c- Thu Apr 27 14:35:57 2000 +++ if_ed_pccard.c Thu Apr 27 14:36:15 2000 @@ -109,12 +109,12 @@ int flags = device_get_flags(dev); int error; - error = ed_probe_WD80x3(dev, 0, flags); + error = ed_probe_Novell(dev, 0, flags); if (error == 0) goto end; ed_release_resources(dev); - error = ed_probe_Novell(dev, 0, flags); + error = ed_probe_WD80x3(dev, 0, flags); if (error == 0) goto end; ed_release_resources(dev); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message