Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Mar 2009 19:15:28 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r190475 - head/sys/dev/ed
Message-ID:  <200903271915.n2RJFSBC069292@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri Mar 27 19:15:28 2009
New Revision: 190475
URL: http://svn.freebsd.org/changeset/base/190475

Log:
  Add bromax axnet based cards to the mix.  This was harvested from the linux
  driver.  Not sure who sold it/rebadged it.
  
  Add stub entries for Mitsubishi B8895 and Toshiba LANCT00A to the
  driver with a comment that they don't work /* NG */.[*] These are
  DP83902A based cards, which should work, but don't seem to.  Likely
  they are from the days before the ne2000 roamed the earth and use a
  non-standard hookup (see if_ed_isa or if_ed_cbus for some examples).
  Unless I happen to stumble into the right one, these may never work,
  but I'm tired of omitting them from commits.
  
  [*] The Japanese adopted OK from English, but also use NG for its
  opposite.

Modified:
  head/sys/dev/ed/if_ed_pccard.c

Modified: head/sys/dev/ed/if_ed_pccard.c
==============================================================================
--- head/sys/dev/ed/if_ed_pccard.c	Fri Mar 27 19:13:36 2009	(r190474)
+++ head/sys/dev/ed/if_ed_pccard.c	Fri Mar 27 19:15:28 2009	(r190475)
@@ -138,6 +138,7 @@ static const struct ed_product {
 	{ PCMCIA_CARD(BILLIONTON, CFLT10N), 0},
 	{ PCMCIA_CARD(BILLIONTON, LNA100B), NE2000DVF_AX88X90},
 	{ PCMCIA_CARD(BILLIONTON, LNT10TN), 0},
+	{ PCMCIA_CARD(BROMAX, AXNET), NE2000DVF_AX88X90},
 	{ PCMCIA_CARD(BROMAX, IPORT), 0},
 	{ PCMCIA_CARD(BROMAX, IPORT2), 0},
 	{ PCMCIA_CARD(BUFFALO, LPC2_CLT), 0},
@@ -188,6 +189,7 @@ static const struct ed_product {
 	{ PCMCIA_CARD(MAGICRAM, ETHER), 0},
 	{ PCMCIA_CARD(MELCO, LPC3_CLX), NE2000DVF_AX88X90},
 	{ PCMCIA_CARD(MELCO, LPC3_TX), NE2000DVF_AX88X90},
+	{ PCMCIA_CARD(MITSUBISHI, B8895), NE2000DVF_ANYFUNC}, /* NG */
 	{ PCMCIA_CARD(MICRORESEARCH, MR10TPC), 0},
 	{ PCMCIA_CARD(NDC, ND5100_E), 0},
 	{ PCMCIA_CARD(NETGEAR, FA410TXC), NE2000DVF_DL100XX},
@@ -224,6 +226,7 @@ static const struct ed_product {
 	{ PCMCIA_CARD(TELECOMDEVICE, LM5LT), 0 },
 	{ PCMCIA_CARD(TELECOMDEVICE, TCD_HPC100), NE2000DVF_AX88X90},
 	{ PCMCIA_CARD(TJ, PTJ_LAN_T), 0 },
+	{ PCMCIA_CARD(TOSHIBA2, LANCT00A), NE2000DVF_ANYFUNC}, /* NG */
 	{ PCMCIA_CARD(ZONET, ZEN), 0},
 	{ { NULL } }
 };



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