aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/tx
Commit message (Expand)AuthorAgeFilesLines
...
* o m_adj rx buffer so IP header is 32-bit alignedSam Leffler2002-10-252-18/+21
* Remove the OpenBSD comatibility stuff. Many changes to be more style(9)Semen Ustimenko2002-10-223-621/+355
* Stop trying to align malloc()ed memory. Rely on malloc() instead, just likeSemen Ustimenko2002-08-192-25/+18
* Do not reset card in epic_freebsd_attach() as reset is done inSemen Ustimenko2002-08-191-7/+0
* Add an epic_stats_update() function (called once per second). Even thoughSemen Ustimenko2002-05-011-9/+27
* Implement true multicast filtering.Semen Ustimenko2002-04-251-16/+64
* Update the email appearing in copyright string.Semen Ustimenko2002-04-201-1/+1
* Merge ``&& must be ||'' bug noticed and fixed in OpenBSD. The only ill effectSemen Ustimenko2002-04-201-1/+1
* Move tx(4) driver to sys/dev/tx. BTW split hardware structures and constantsSemen Ustimenko2002-04-193-380/+12
* Remove __P.Alfred Perlstein2002-03-201-41/+41
* Cast pointers to uintptr_t rather than u_int32_t. This doesn't work tooPeter Wemm2002-03-191-1/+1
* Remove mbuf exhaustion warning messages; these are handled by theMike Silbersack2002-02-111-2/+0
* Update tx(4) to always enable vlan(4) support.Brooks Davis2001-09-051-6/+0
* Fix an bug in FreeBSD attach routine - attaching MII interfaces before doingSemen Ustimenko2001-08-131-9/+7
* Add support for 802.1Q VLAN and oversized ethernet frames.Semen Ustimenko2001-08-133-4/+34
* Add initializetion of NVCTL register with EEPROM stored value.Semen Ustimenko2001-06-233-0/+29
* Add support for SMC9432FTX card, possibly othe fiber optic SMC9432 familySemen Ustimenko2001-02-073-43/+216
* Another round of the <sys/queue.h> FOREACH transmogriffer.Poul-Henning Kamp2001-02-041-2/+1
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-2/+1
* Add missing delay after card reset.Pierre Beyssac2000-11-091-0/+1
* Remove unneeded #include <machine/clock.h>Poul-Henning Kamp2000-10-151-1/+0
* Make all Ethernet drivers attach using ether_ifattach() and detach usingArchie Cobbs2000-07-131-6/+2
* Added support for SMC9432BTX cards.Semen Ustimenko2000-06-213-11/+87
* Avoid double-call to bpf_mtap(). This is now handled in ether_input().Archie Cobbs2000-05-241-0/+2
* Move code to handle BPF and bridging for incoming Ethernet packets outArchie Cobbs2000-05-141-50/+0
* Depend on miibus.Peter Wemm2000-04-291-0/+2
* Driver is now using miibus, and newbus.Semen Ustimenko2000-04-123-1104/+678
* Change incorrect NULLs to 0sEivind Eklund1999-12-211-1/+1
* Added code to enable BusMaster operations.Semen Ustimenko1999-10-293-4/+39
* $Id$ -> $FreeBSD$Peter Wemm1999-08-283-3/+3
* Clean up after removing sys/eventhandler.h from sys/systm.h at the lastMike Smith1999-08-211-1/+2
* Implement a new generic mechanism for attaching handler functions toMike Smith1999-08-211-5/+6
* Rename bpfilter to bpf.Dag-Erling Smørgrav1999-07-061-11/+11
* Eliminate a bunch of #include "pci.h" and #if NPCI > 0 around entirePeter Wemm1999-07-031-4/+1
* Move arpcom structure be the first in softc structure. NeededSemen Ustimenko1999-05-222-4/+4
* #if 0 some unused code (debug?) to quiet a warning.Peter Wemm1999-05-101-2/+5
* Simplify the COMPAT_PCI_DRIVER/DATA_SET hack. We can add:Peter Wemm1999-05-091-6/+3
* Use COMPAT_PCI_DRIVER() for registration if it exists. This shouldn'tPeter Wemm1999-04-241-1/+5
* Well folks, this is it - The second stage of the removal for build supportPeter Wemm1999-04-171-7/+1
* Add support for bridging to if_tx.cNick Sayer1999-03-311-1/+43
* Implemented workaround for EPIC's Application Note 7-15 (concerningSemen Ustimenko1999-03-143-110/+257
* Fix from author of the driver:Andreas Klemm1999-03-091-3/+3
* probe function changed from returning char * to const char *.Matthew Dillon1998-12-141-3/+3
* Adjust prototype to match definition (by adding a 'const').Eivind Eklund1998-12-091-2/+2
* The "easy" fixes for compiling the kernel -Wunused: remove unreferenced staticArchie Cobbs1998-12-071-3/+2
* ifioctl takes a u_long rather than an int on 3.0Peter Wemm1998-11-091-1/+5
* Ported to OpenBSD. sys/pci/smc83c170.h renamed to sys/pci/if_txvar.h to beSemen Ustimenko1998-11-013-513/+1669
* Minimal change for #if __FreeBSD__ >= 3 to check __FreeBSD_version instead.Peter Wemm1998-09-241-2/+2
* Fixed printf format errors (only 1 left in GENERIC now).Bruce Evans1998-07-131-5/+6
* Fix some strange errors of shutting transmitter up when startSemen Ustimenko1998-07-041-578/+561