aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/txp
Commit message (Expand)AuthorAgeFilesLines
* Make sure rx descriptor ring align on 16 bytes. I guess thePyun YongHyeon2009-08-311-2/+4
* Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/Robert Watson2009-06-261-2/+2
* bus_dma(9) conversion and make txp(4) work on all architectures.Pyun YongHyeon2009-03-122-901/+2155
* Replace local CRC32 routine with ether_crc32_be(). This shouldPyun YongHyeon2009-03-112-49/+30
* s/u_int8_t/uint8_t/gPyun YongHyeon2009-03-112-182/+182
* style(9) - space after keywords.Pyun YongHyeon2009-03-111-14/+14
* Remove return statement at the end of function that returns void.Pyun YongHyeon2009-03-111-20/+1
* Remove extra tab characters.Pyun YongHyeon2009-03-111-3/+3
* K&R -> ANSI C function definitions.Pyun YongHyeon2009-03-111-72/+34
* Update to latest 3Com firmware image. The latest fimware isPyun YongHyeon2009-02-253-4578/+3802
* Change the functions to ANSI in those cases where it breaks promotionRoman Divacky2009-02-241-19/+7
* Read MII_ANAR register and get common denominator ability.Pyun YongHyeon2007-11-161-1/+6
* IEEE 802.3 Annex 28B.3 explicitly specifies the following relativePyun YongHyeon2007-11-161-3/+3
* Nuke duplicated __FBSDID.Pyun YongHyeon2007-06-121-4/+0
* Add checks for contigmalloc(9) failure.Pyun YongHyeon2007-06-121-0/+10
* Catch up the rest of the drivers with the ether_vlan_mtap modifications.Christian S.J. Peron2007-03-041-1/+1
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-231-1/+1
* Move ethernet VLAN tags from mtags to its own mbuf packet header fieldAndre Oppermann2006-09-171-7/+4
* Since DELAY() was moved, most <machine/clock.h> #includes have beenPoul-Henning Kamp2006-05-161-1/+0
* - Fix VLAN_INPUT_TAG() macro, so that it doesn't touch mtag inGleb Smirnoff2005-12-181-2/+3
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-6/+6
* Remove call to txp_set_filter() from txp_attach(). txp_set_filter() needsBill Paul2005-10-291-2/+0
* - Add locking and mark MPSAFE. The driver had a mutex in the softc andJohn Baldwin2005-10-272-62/+86
* - Use PCIR_BAR().John Baldwin2005-10-031-5/+2
* Make sure that we call if_free(ifp) after bus_teardown_intr. Since weWarner Losh2005-09-191-3/+3
* Fixed a diagnostic message.Ruslan Ermilov2005-09-151-1/+1
* - Only call txp_release_resources() once if attach fails.John Baldwin2005-08-311-38/+31
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-9/+10
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-0/+2
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-102-26/+40
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-291-2/+0
* Use BUS_PROBE_DEFAULT in preference to 0. Also for vx, returnWarner Losh2005-03-011-1/+1
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-063-3/+3
* Since if_txp doesn't contain locking or run with INTR_MPSAFE, markRobert Watson2004-08-131-1/+2
* Remove the setting of the pci config variables on power state changes.Warner Losh2004-06-281-23/+0
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1
* We don't need to initialize if_output, ether_ifattach() does itMaxime Henrion2004-05-231-1/+0
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-171-3/+3
* Announce ethernet MAC addresss in ether_ifattach().Matthew N. Dodd2004-03-141-3/+0
* Replace the if_name and if_unit members of struct ifnet with new membersBrooks Davis2003-10-311-2/+1
* Use __FBSDID().David E. O'Brien2003-08-241-0/+3
* All current uses of pci_set_powerstate are bogus, at least in theory.Warner Losh2003-07-031-2/+2
* - Don't call pci_enable_io() in drivers (unless needed for resume).Matthew N. Dodd2003-04-161-18/+0
* - Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd2003-04-151-1/+3
* Use __FBSDID rather than rcsid[].David E. O'Brien2003-04-031-1/+3
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-6/+6
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-6/+6
* network interface driver changes:Sam Leffler2002-11-141-28/+12
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-041-1/+2
* Remove __P.Alfred Perlstein2002-03-201-41/+41