aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ste/if_ste.c
Commit message (Expand)AuthorAgeFilesLines
* net: Remove unneeded NULL check for the allocated ifnetZhenlei Huang2024-06-281-5/+0
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* Mechanically convert if_ste(4) to IfAPIJustin Hibbits2023-02-061-97/+96
* ste: Remove unused devclass argument to DRIVER_MODULE.John Baldwin2022-05-061-3/+1
* Remove unused miibus_devclass and miibus_fdt_devclass.John Baldwin2022-05-061-1/+1
* Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (17 of many)Pawel Biernacki2020-02-261-6/+6
* Convert to if_foreach_llmaddr() KPI.Gleb Smirnoff2019-10-211-14/+16
* ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy2018-05-181-1/+1
* spdx: initial adoption of licensing ID tags.Pedro F. Giffuni2017-11-181-0/+2
* Mechanically convert to if_inc_counter().Gleb Smirnoff2014-09-191-9/+9
* Use define from if_var.h to access a field inside struct if_data,Gleb Smirnoff2014-08-301-1/+1
* Fix various NIC drivers to properly cleanup static DMA resources.John Baldwin2014-06-111-8/+6
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-2/+2
* Remove duplicate const specifiers in many drivers (I hope I got all ofDimitry Andric2012-11-051-1/+1
* - There's no need to overwrite the default device method with the defaultMarius Strobl2011-11-221-5/+1
* - Import the common MII bitbang'ing code from NetBSD and convert drivers toMarius Strobl2011-11-011-185/+40
* - Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOPMarius Strobl2011-05-031-4/+2
* Do a sweep of the tree replacing calls to pci_find_extcap() with calls toJohn Baldwin2011-03-231-3/+3
* sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly.Matthew D Fleming2011-01-121-1/+1
* Convert the PHY drivers to honor the mii_flags passed down and convertMarius Strobl2010-10-151-9/+8
* It seems some old Sundace(now IC Plus Corp.) controllers do notPyun YongHyeon2010-08-091-7/+20
* Make sure to store dma address of RX buffer in little endian form.Pyun YongHyeon2010-01-081-4/+6
* Fix EEPROM access code to return data in host byte order.Pyun YongHyeon2010-01-081-13/+7
* Remove extraneous semicolons, no functional changes.Martin Blapp2010-01-071-1/+1
* ether_ifattach sets if_mtu, remove unnecessary code.Pyun YongHyeon2009-12-241-1/+0
* Update if_iqdrops in case of RX buffer allocation failure.Pyun YongHyeon2009-12-241-1/+1
* Add suspend/resume support as well as basic WOL.Pyun YongHyeon2009-12-241-24/+108
* Implement RX interrupt moderation using one-shot timer interrupt.Pyun YongHyeon2009-12-241-26/+63
* We don't need to generate DMA complete interrupt for everyPyun YongHyeon2009-12-231-1/+12
* Implement hardware MAC statistics counter support. The countersPyun YongHyeon2009-12-231-3/+133
* Report the correct result of mii_mediachg(). Previously it alwaysPyun YongHyeon2009-12-231-19/+12
* Don't report link status if driver is not running.Pyun YongHyeon2009-12-231-0/+4
* Overhaul RX filter programming.Pyun YongHyeon2009-12-231-62/+38
* Reimplement controller reset. Datasheet says full reset takes aboutPyun YongHyeon2009-12-231-8/+15
* Don't reinitialize controller if driver is already running. ThisPyun YongHyeon2009-12-231-2/+11
* Reimplement Tx status error handler as recommended by datasheet.Pyun YongHyeon2009-12-221-21/+71
* Prefer bus_write_{1,2,4}/bus_read_{1,2,4} toPyun YongHyeon2009-12-221-3/+0
* Prefer memory space register mapping over io space. If memory spacePyun YongHyeon2009-12-221-14/+13
* Instead of relying on hard resetting of controller to stopPyun YongHyeon2009-12-221-20/+31
* Reimplement miibus_statchg method. Don't rely on link state changePyun YongHyeon2009-12-221-48/+75
* Introduce sc_flags member variable and use it to keep track ofPyun YongHyeon2009-12-221-10/+8
* Add minimal dealy while ste(4) is waiting for the end of active DMAPyun YongHyeon2009-12-221-0/+1
* Add bus_dma(9) and endianness support to ste(4).Pyun YongHyeon2009-12-221-237/+506
* Sort function prototyes.Pyun YongHyeon2009-12-211-39/+38
* style(9)Pyun YongHyeon2009-12-211-100/+100
* Remove trailing white spaces.Pyun YongHyeon2009-12-211-13/+13
* s/u_intXX_t/uintXX_t/gPyun YongHyeon2009-12-211-9/+9
* o Remove unnecessary return statement.Pyun YongHyeon2009-12-211-30/+2
* Use ANSI function definations.Pyun YongHyeon2009-12-211-87/+34