From owner-freebsd-current@FreeBSD.ORG Wed Oct 20 04:41:36 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EED4F16A4CE for ; Wed, 20 Oct 2004 04:41:36 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CD8D43D1D for ; Wed, 20 Oct 2004 04:41:36 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (harmony.village.org [10.0.0.6]) by harmony.village.org (8.13.1/8.13.1) with ESMTP id i9K4ddhF022474; Tue, 19 Oct 2004 22:39:40 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 19 Oct 2004 22:39:58 -0600 (MDT) Message-Id: <20041019.223958.30090898.imp@bsdimp.com> To: if@hetzner.co.za From: "M. Warner Losh" In-Reply-To: References: X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: current@freebsd.org Subject: Re: pccard/cardbus question X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2004 04:41:37 -0000 In message: Ian FREISLICH writes: : pccard1: (manufacturer=0xffffffff, product=0xffffffff) at function 0 : pccard1: CIS info: ACCTON, EN2216-PCMCIA-ETHERNET, EN2216 : : I think that the CIS info needse to be added to if_ed_pccard.c, but : I can't figure out how to do this. The full CIS info from this : card is included. : : Can someone help? Index: if_ed_pccard.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ed/if_ed_pccard.c,v retrieving revision 1.59 diff -u -r1.59 if_ed_pccard.c --- if_ed_pccard.c 21 Jul 2004 20:38:12 -0000 1.59 +++ if_ed_pccard.c 20 Oct 2004 04:39:23 -0000 @@ -123,6 +123,7 @@ #define NE2000DVF_AX88190 0x0002 /* chip is ASIX AX88190 */ } ed_pccard_products[] = { { PCMCIA_CARD(ACCTON, EN2212, 0), 0}, + { PCMCIA_CARD(ACCTON, EN2216, 0), 0}, { PCMCIA_CARD(ALLIEDTELESIS, LA_PCM, 0), 0}, { PCMCIA_CARD(AMBICOM, AMB8002T, 0), 0}, { PCMCIA_CARD(BILLIONTON, LNT10TN, 0), 0}, Since ACCTON EN2216 is already in pccarddevs. Warner