aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dc
Commit message (Expand)AuthorAgeFilesLines
* Be consistent about functions being static.Poul-Henning Kamp2002-10-161-6/+8
* Put function return types on a line by themselves.Alfred Perlstein2002-10-142-8/+12
* 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-072-15/+106
* 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-202-0/+5
* 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-062-0/+88
* Clean up mii/phy drivers: Remove the MIIF_DOINGAUTO which doesn't reallyPoul-Henning Kamp2002-05-041-45/+14
* Don't grab the lock until somewhat later in attach to avoid a lockPoul-Henning Kamp2002-05-031-6/+7
* Make one generic mii_phy_detach() to replace 19 slightly different ones.Poul-Henning Kamp2002-04-292-32/+2
* Move us yet closer to IFM_* definitions in NetBSD.Poul-Henning Kamp2002-04-291-6/+6
* Don't pass three args when one will do just fine, and even preventPoul-Henning Kamp2002-04-282-2/+2
* Improve an API by about 4 lines per driver.Poul-Henning Kamp2002-04-282-8/+2
* Work around an Intel 21143 chip bug.Stephen McKay2002-04-181-7/+10
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-041-1/+2
* Remove __P.Alfred Perlstein2002-03-203-73/+68
* Forgot one part of the VLAN support for the dc(4) driver.Doug Ambrisko2002-01-161-0/+2
* 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-142-0/+90
* Avoid an unnecessary copy of a packet if it is already in a single mbuf.Luigi Rizzo2001-12-112-2/+7
* 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
* Defs for three (unused so far) bits in PCI command/status registerLuigi Rizzo2001-10-251-3/+3
* Do not call mii_pollstat() from within device tick routines; the statusJonathan Lemon2001-09-291-8/+5
* Cleanup pass for mii drivers.Jonathan Lemon2001-09-292-31/+19
* Add support for Conexant LANfinity miniPCI controllers. People who haveBill Paul2001-09-042-3/+49
* 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
* Catch up to header include changes:John Baldwin2001-03-282-0/+2
* Apply patch to allow TX underrun handling without issuing a completeBill Paul2001-02-222-26/+64
* 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
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-2/+2
* 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