Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Apr 2000 14:56:34 +0900
From:      Mitsuru IWASAKI <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)
Message-ID:  <20000427145634U.iwasaki@jp.FreeBSD.org>
In-Reply-To: <Pine.BSF.4.21.0004261803220.50194-100000@sasami.jurai.net>
References:  <20000427011230G.iwasaki@jp.FreeBSD.org> <Pine.BSF.4.21.0004261803220.50194-100000@sasami.jurai.net>

next in thread | previous in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000427145634U.iwasaki>