summaryrefslogtreecommitdiff
path: root/sys/dev/dc
AgeCommit message (Expand)Author
2002-11-14o track either_ifattach/ether_ifdetach API changesSam Leffler
2002-10-16Be consistent about functions being static.Poul-Henning Kamp
2002-10-14Put function return types on a line by themselves.Alfred Perlstein
2002-10-07Ooops. Need to free dc_srom on detach to not leak memory.Warner Losh
2002-10-07Dynamically configure the width of the srom. This code comes fromWarner Losh
2002-09-20Fix the support for the AN985/983 chips, which do not set theMartin Blapp
2002-09-20Enable the automatic TX underrun recovery for the ADMtek chips.Martin Blapp
2002-09-04Make consistent; turn spaces into tabs where there is a mixture.Mark Murray
2002-08-23style:Alfred Perlstein
2002-08-18Increase size of ifnet.if_flags from 16 bits (short) to 32 bits (int). To avoidMaxim Sobolev
2002-06-30Fix if_timer logic to make sure that there is always a timeoutLuigi Rizzo
2002-05-06Add suspend/resume code mostly merged from fxp/rl driver.Mitsuru IWASAKI
2002-05-04Clean up mii/phy drivers: Remove the MIIF_DOINGAUTO which doesn't reallyPoul-Henning Kamp
2002-05-03Don't grab the lock until somewhat later in attach to avoid a lockPoul-Henning Kamp
2002-04-29Make one generic mii_phy_detach() to replace 19 slightly different ones.Poul-Henning Kamp
2002-04-29Move us yet closer to IFM_* definitions in NetBSD.Poul-Henning Kamp
2002-04-28Don't pass three args when one will do just fine, and even preventPoul-Henning Kamp
2002-04-28Improve an API by about 4 lines per driver.Poul-Henning Kamp
2002-04-18Work around an Intel 21143 chip bug.Stephen McKay
2002-04-04Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin
2002-03-20Remove __P.Alfred Perlstein
2002-01-16Forgot one part of the VLAN support for the dc(4) driver.Doug Ambrisko
2002-01-16Add VLAN for the dc(4) driver (ie long frame). The patch is 2 parts.Doug Ambrisko
2001-12-19Fix the "conexant chips don't work in full duplexmode" problem. AccordingBill Paul
2001-12-19Fix compiler warning in dc_intr(): if the only code that does a "goto"Bill Paul
2001-12-15Patch up some existing style bugs and some that crept in with thePeter Wemm
2001-12-14Device Polling code for -current.Luigi Rizzo
2001-12-11Avoid an unnecessary copy of a packet if it is already in a single mbuf.Luigi Rizzo
2001-12-07MFS (merge from stable): rev 1.9.2.28, fix ordering of IFF_RUNNING mods.Peter Wemm
2001-12-04Remove error messages on mbuf allocation failures, nowLuigi Rizzo
2001-11-29Per jlemon request, reintroduce some printf() when anLuigi Rizzo
2001-11-29For i386 architecture, remove an expensive m_devget() (and theLuigi Rizzo
2001-11-14Remove ifnet.if_mpsafe for now. If this is needed, it won't be neededJohn Baldwin
2001-10-27Enable round-robin arbitration between transmit and receive unitLuigi Rizzo
2001-10-25Defs for three (unused so far) bits in PCI command/status registerLuigi Rizzo
2001-09-29Do not call mii_pollstat() from within device tick routines; the statusJonathan Lemon
2001-09-29Cleanup pass for mii drivers.Jonathan Lemon
2001-09-04Add support for Conexant LANfinity miniPCI controllers. People who haveBill Paul
2001-07-12Deal with the condition where we lose link in the middle of transmittingBill Paul
2001-07-09Apply patch supplied by Jonathan Chen: use the correct arguments toBill Paul
2001-06-20Change m_devget()'s outdated and unused `offset' argument to actually meanBosko Milekic
2001-03-28Catch up to header include changes:John Baldwin
2001-02-22Apply patch to allow TX underrun handling without issuing a completeBill Paul
2001-02-21Big round of minor updates:Bill Paul
2001-02-20Take luigi's suggestion and move the check for nothing to do to before theWarner Losh
2001-02-20Add DC_UNLOCK before first return. This caused returns when dc was onWarner Losh
2001-02-18Add a check in the interrupt service routine to return quickly inLuigi Rizzo
2001-02-09Change and clean the mutex lock interface.Bosko Milekic
2001-02-06Convert if_multiaddrs from LIST to TAILQ so that it can be traversedPoul-Henning Kamp
2001-02-03Use LIST_FOREACH() to traverse ifp->if_multiaddrs list, instead ofPoul-Henning Kamp