Date: Sun, 17 Dec 2000 17:44:30 +0900 From: Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp> To: imp@FreeBSD.org Cc: Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp> Subject: Re: cvs commit: src/sys/dev/ed if_ed_pccard.c Message-ID: <86zohv8mj5.wl@silver.carrots.uucp.r.dl.itc.u-tokyo.ac.jp> In-Reply-To: In your message of "Tue, 12 Dec 2000 22:27:23 -0800 (PST)" <200012130627.eBD6RNf97944@freefall.freebsd.org> References: <200012130627.eBD6RNf97944@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--Multipart_Sun_Dec_17_17:44:30_2000-1 Content-Type: text/plain; charset=US-ASCII On Tue, 12 Dec 2000 22:27:23 -0800 (PST), Warner Losh <imp@FreeBSD.org> said: Warner> imp 2000/12/12 22:27:23 PST Warner> Modified files: Warner> sys/dev/ed if_ed_pccard.c Warner> Log: Warner> Fix problem with ax88190 based cards trying to probe further after Warner> matching the ax88190. AX88190 actually shares most probe and attach routines with NE2000. Hence we still have to call ed_probe_Novell() for AX88190 in a way like this: --Multipart_Sun_Dec_17_17:44:30_2000-1 Content-Type: text/plain; type=patch; charset=US-ASCII Content-Disposition: attachment; filename="ed.diff" Content-Transfer-Encoding: 7bit Index: dev/ed/if_ed_pccard.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ed/if_ed_pccard.c,v retrieving revision 1.23 diff -u -r1.23 if_ed_pccard.c --- dev/ed/if_ed_pccard.c 2000/12/13 06:27:23 1.23 +++ dev/ed/if_ed_pccard.c 2000/12/17 07:29:35 @@ -172,6 +172,7 @@ ax88190_geteprom(sc); ed_release_resources(dev); + error = ed_probe_Novell(dev, 0, flags); goto end2; } --Multipart_Sun_Dec_17_17:44:30_2000-1 Content-Type: text/plain; charset=US-ASCII -- Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp> <tanimura@FreeBSD.org> --Multipart_Sun_Dec_17_17:44:30_2000-1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86zohv8mj5.wl>