summaryrefslogtreecommitdiff
path: root/sys/dev/dc
AgeCommit message (Expand)Author
2025-10-17dc(4): fix argument to if_foreach_llmaddr() for 21143.Chris Johns
2025-01-02Remove now-redundant calls to device_delete_childJohn Baldwin
2024-06-28net: Remove unneeded NULL check for the allocated ifnetZhenlei Huang
2023-08-16sys: Remove $FreeBSD$: one-line .c patternWarner Losh
2023-08-16sys: Remove $FreeBSD$: two-line .h patternWarner Losh
2023-02-06Mechanically convert dc(4) to IfAPIJustin Hibbits
2022-05-06dc: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin
2022-05-06Remove unused miibus_devclass and miibus_fdt_devclass.John Baldwin
2020-02-03Remove sparc64 kernel supportWarner Losh
2019-10-21Convert to if_foreach_llmaddr() KPI.Gleb Smirnoff
2018-09-26Reapply, with minor tweaks, r338025, from the original commit:Warner Losh
2018-08-19Back out r338035 until Warner is finished churning GSoC PNP patchesConrad Meyer
2018-08-19Remove unused and easy to misuse PNP macro parameterConrad Meyer
2018-07-08Add PNP info to PCI attachment of dc driverWarner Losh
2018-05-18ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy
2017-11-18spdx: initial adoption of licensing ID tags.Pedro F. Giffuni
2015-01-23Remove break after return.Kevin Lo
2014-09-19Mechanically convert to if_inc_counter().Gleb Smirnoff
2014-08-30Use define from if_var.h to access a field inside struct if_data,Gleb Smirnoff
2014-06-11Fix various NIC drivers to properly cleanup static DMA resources.John Baldwin
2014-06-02Introduce a procedural interface to the ifnet structure. The newMarcel Moolenaar
2013-10-26The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff
2012-12-04Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff
2012-11-05Remove duplicate const specifiers in many drivers (I hope I got all ofDimitry Andric
2012-05-11- Change the module order of these MAC drivers to be last so they areMarius Strobl
2011-11-23Use DEVMETHOD_END.Marius Strobl
2011-11-22- There's no need to overwrite the default device method with the defaultMarius Strobl
2011-11-18There's no need to read DC_10BTSTAT twice in dcphy_status().Marius Strobl
2011-11-18- There's no need to ignore the return value of mii_attach(9) when attachingMarius Strobl
2011-11-18Partially revert r218788. r218788 removed calling dc_setcfg() forPyun YongHyeon
2011-11-01- Import the common MII bitbang'ing code from NetBSD and convert drivers toMarius Strobl
2011-10-24Add support for ALi/ULi, now NVIDIA, M5261/M5263 PCI FastEthernetPyun YongHyeon
2011-10-24When driver is run for the first time there would be no establishedPyun YongHyeon
2011-10-24Add missing bus_dmamap_sync() in setup frame transmit.Pyun YongHyeon
2011-10-24Fix a regression introduced in r218832. For TX status check, driverPyun YongHyeon
2011-06-28Remove duplicate header includesKevin Lo
2011-06-21Supress command completion failure warning when the card isn'tWarner Losh
2011-05-03- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOPMarius Strobl
2011-03-28Revise r220046 by introducing dc_netcfg_wait() which waits the endPyun YongHyeon
2011-03-26Wait until the DMA engine is stopped before unmapping buffers andMarius Strobl
2011-03-16Remove too expensive bus_dmamap_sync(9) call in dc_rx_resync().Pyun YongHyeon
2011-03-08Rearrange dc_tx_underrun() a bit to correctly set TX FIFO thresholdPyun YongHyeon
2011-02-23Remove unnecessary controller reinitialization which resulted inPyun YongHyeon
2011-02-19s/u_intXX_t/uintXX_t/gPyun YongHyeon
2011-02-19Consistently use a tab character instead of space after #define.Pyun YongHyeon
2011-02-19Count how many frames driver lost in interrupt handler. ThisPyun YongHyeon
2011-02-19Split common TX/RX descriptor DMA tag to TX and RX DMA tagsPyun YongHyeon
2011-02-19Rearrange interrupt handler a bit and remove forever loop.Pyun YongHyeon
2011-02-19Send frames only when there is a valid link and driver is runningPyun YongHyeon
2011-02-18Fix a long standing bug where driver handed over RX descriptorPyun YongHyeon