aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dc/if_dc.c
Commit message (Expand)AuthorAgeFilesLines
* o track either_ifattach/ether_ifdetach API changesSam Leffler2002-11-141-16/+6
* Be consistent about functions being static.Poul-Henning Kamp2002-10-161-6/+8
* Ooops. Need to free dc_srom on detach to not leak memory.Warner Losh2002-10-071-0/+1
* Dynamically configure the width of the srom. This code comes fromWarner Losh2002-10-071-14/+104
* Fix the support for the AN985/983 chips, which do not set theMartin Blapp2002-09-201-1/+2
* Enable the automatic TX underrun recovery for the ADMtek chips.Martin Blapp2002-09-201-0/+3
* Make consistent; turn spaces into tabs where there is a mixture.Mark Murray2002-09-041-21/+21
* style:Alfred Perlstein2002-08-231-58/+116
* Increase size of ifnet.if_flags from 16 bits (short) to 32 bits (int). To avoidMaxim Sobolev2002-08-181-3/+3
* Fix if_timer logic to make sure that there is always a timeoutLuigi Rizzo2002-06-301-6/+6
* Add suspend/resume code mostly merged from fxp/rl driver.Mitsuru IWASAKI2002-05-061-0/+81
* Don't grab the lock until somewhat later in attach to avoid a lockPoul-Henning Kamp2002-05-031-6/+7
* Move us yet closer to IFM_* definitions in NetBSD.Poul-Henning Kamp2002-04-291-6/+6
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-041-1/+2
* Remove __P.Alfred Perlstein2002-03-201-61/+56
* Add VLAN for the dc(4) driver (ie long frame). The patch is 2 parts.Doug Ambrisko2002-01-161-12/+26
* Fix the "conexant chips don't work in full duplexmode" problem. AccordingBill Paul2001-12-191-4/+8
* Fix compiler warning in dc_intr(): if the only code that does a "goto"Bill Paul2001-12-191-0/+3
* Patch up some existing style bugs and some that crept in with thePeter Wemm2001-12-151-7/+7
* Device Polling code for -current.Luigi Rizzo2001-12-141-0/+83
* Avoid an unnecessary copy of a packet if it is already in a single mbuf.Luigi Rizzo2001-12-111-2/+6
* MFS (merge from stable): rev 1.9.2.28, fix ordering of IFF_RUNNING mods.Peter Wemm2001-12-071-2/+2
* Remove error messages on mbuf allocation failures, nowLuigi Rizzo2001-12-041-10/+2
* Per jlemon request, reintroduce some printf() when anLuigi Rizzo2001-11-291-3/+8
* For i386 architecture, remove an expensive m_devget() (and theLuigi Rizzo2001-11-291-31/+40
* Remove ifnet.if_mpsafe for now. If this is needed, it won't be neededJohn Baldwin2001-11-141-1/+0
* Enable round-robin arbitration between transmit and receive unitLuigi Rizzo2001-10-271-0/+5
* Do not call mii_pollstat() from within device tick routines; the statusJonathan Lemon2001-09-291-8/+5
* Add support for Conexant LANfinity miniPCI controllers. People who haveBill Paul2001-09-041-3/+27
* Deal with the condition where we lose link in the middle of transmittingBill Paul2001-07-121-1/+1
* Apply patch supplied by Jonathan Chen: use the correct arguments toBill Paul2001-07-091-2/+2
* Change m_devget()'s outdated and unused `offset' argument to actually meanBosko Milekic2001-06-201-3/+2
* Apply patch to allow TX underrun handling without issuing a completeBill Paul2001-02-221-26/+58
* Big round of minor updates:Bill Paul2001-02-211-3/+3
* Take luigi's suggestion and move the check for nothing to do to before theWarner Losh2001-02-201-5/+4
* Add DC_UNLOCK before first return. This caused returns when dc was onWarner Losh2001-02-201-1/+3
* Add a check in the interrupt service routine to return quickly inLuigi Rizzo2001-02-181-1/+4
* Convert if_multiaddrs from LIST to TAILQ so that it can be traversedPoul-Henning Kamp2001-02-061-4/+4
* Use LIST_FOREACH() to traverse ifp->if_multiaddrs list, instead ofPoul-Henning Kamp2001-02-031-8/+4
* Silence compiler warnings.Bill Paul2001-01-201-2/+2
* Bug fixes that I've put together while working on a project in the office:Bill Paul2001-01-191-6/+12
* Implement MTX_RECURSE flag for mtx_init().Bosko Milekic2001-01-191-1/+1
* Use pci_get_powerstate()/pci_set_powerstate() which now exists in theBill Paul2000-12-181-24/+16
* Initialize/grab the mutex earlier in the attach phase, so thatBill Paul2000-12-041-2/+3
* Change the driver to allocate its own callout structure, and modifyJonathan Lemon2000-11-251-7/+11
* Add support for the Accton EN2242 MiniPCI adapter. This is just anBill Paul2000-11-141-0/+3
* Grrrr. Remember to bzero() the mediainfo structures after we allocateBill Paul2000-11-031-0/+3
* Call dc_apply_fixup() in dc_setcfg() for the MII case.Bill Paul2000-10-311-0/+4
* Grrr. The 'reg' variable in dc_apply_fixup() needs to be a u_int32_t, notBill Paul2000-10-301-1/+1
* Fix typo s/DE_DEVICEID_FE2500/DC_DEVICEID_FE2500/Peter Wemm2000-10-281-1/+1