summaryrefslogtreecommitdiff
path: root/sys/pci
Commit message (Expand)AuthorAgeFilesLines
* Bring in support for SUGOI LAN GIGA NIC made by System TALKS, Inc fromWarner Losh2005-01-221-0/+1
* Reimplement the fix in rev. 1.126.Ruslan Ermilov2005-01-101-5/+8
* correct direction for bus_dma sync of rx bufferSam Leffler2005-01-091-1/+1
* Revert local experiment which leaked into commit.Poul-Henning Kamp2005-01-071-1/+1
* Fix compilation of DEVICE_POLLING code.Poul-Henning Kamp2005-01-072-6/+6
* Fix typos from previous commit.Scott Long2005-01-072-0/+2
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-0731-37/+39
* We no longer recurse the mutex.Poul-Henning Kamp2005-01-071-1/+1
* If we get an interrupt and the interface is down, return before wePoul-Henning Kamp2005-01-072-9/+5
* Don't tweak DSP on the ..16 chips.Poul-Henning Kamp2005-01-061-1/+1
* Fix for an issue with excessive collisions in half duplex mode.Poul-Henning Kamp2005-01-061-0/+8
* Nail the short cable problem the exact way National says it should be.Poul-Henning Kamp2005-01-061-19/+14
* Simplify and fix bugs in rx/tx ring cleanup.Poul-Henning Kamp2005-01-061-24/+21
* Rewrite the rx/tx ring initialization to use pointers instead of arrays.Poul-Henning Kamp2005-01-061-45/+34
* Eliminate a bunch of unnecessary prototypes.Poul-Henning Kamp2005-01-061-54/+12
* Move the module related stuff to the bottom of the file. This willPoul-Henning Kamp2005-01-061-30/+30
* Make sure to clear any pending interrupts when we stop the interface.Poul-Henning Kamp2005-01-061-0/+1
* Close a theoretical race: By the time the watchdog comes aroundPoul-Henning Kamp2005-01-061-1/+5
* Align if else if properlyPoul-Henning Kamp2005-01-051-6/+4
* Style: new-speak functions, remove pointless "return".Poul-Henning Kamp2005-01-051-137/+44
* Make sis_initl() take a typed argument.Poul-Henning Kamp2005-01-051-24/+15
* Add locked/unlocked variants of sis_init()Poul-Henning Kamp2005-01-051-15/+22
* Make a locked and unlocked variant of sis_start()Poul-Henning Kamp2005-01-051-15/+20
* Don't declare variables "register", the compiler ought to know what to do.Poul-Henning Kamp2005-01-051-6/+6
* Instead of keeping track of the index into the receive ring use the alreadyPoul-Henning Kamp2005-01-042-8/+6
* Forget about the sis_list_data and sis_ring_data structures and embeddPoul-Henning Kamp2005-01-042-132/+109
* Prototype busdma callback using the typedef.Poul-Henning Kamp2005-01-041-1/+1
* Add PCI and device ID's to if_xl to support:Robert Watson2005-01-032-1/+6
* [1] Remove the generic bridge support from those drivers that had it. TheEric Anholt2004-12-304-15/+55
* Enable sk(4) for ATLQ.Max Laier2004-12-241-5/+7
* Enable jumbo frames on Yukon variants of sk(4).Bjoern A. Zeeb2004-12-201-2/+9
* Update the Tigon 1 and 2 driver to use the sf_buf API for implementingAlan Cox2004-12-061-15/+23
* - Simplify pcn_probe() by moving vendor/device matching code to pcn_match().Matthew N. Dodd2004-12-031-45/+44
* - Move chip ID code into separate function.Matthew N. Dodd2004-12-031-42/+94
* Additional register definitions.Matthew N. Dodd2004-12-031-1/+19
* Correct URL of the programming manual.Christian Brueffer2004-11-171-1/+1
* Add missing /* DEVICE_POLLING */Christian Brueffer2004-11-171-1/+1
* only clear the IFF_OACTIVE flag when we have a chance of being able toJohn-Mark Gurney2004-11-171-4/+4
* move the lock after the NULL check so we don't have a hard(er) to diagnoseJohn-Mark Gurney2004-11-151-2/+2
* fix the missing lock in sk_jfree (verified w/ an assert)John-Mark Gurney2004-11-152-10/+23
* Commit more debugging output. This is a little bit of using a large hammer,David E. O'Brien2004-11-141-0/+10
* Set ramsize depending on a value from eprom instead of usingBjoern A. Zeeb2004-11-131-3/+9
* Add altq support.Christian Brueffer2004-11-121-7/+9
* Add device polling supportChristian Brueffer2004-11-102-0/+109
* Hide link up/down/media printfs behind bootverbosePoul-Henning Kamp2004-11-081-1/+2
* Another missing ! in front of IFQ_DRV_IS_EMPTY, this time in an even moreMax Laier2004-11-081-3/+7
* * Correct an off-by-one reading vpd ro data.David E. O'Brien2004-11-012-3/+33
* Forcibly disable interrupts, if we find ourselves servicing one whenBruce M Simpson2004-10-271-1/+8
* Workaround for a recursive acquisition of the driver mutex during deviceBruce M Simpson2004-10-261-0/+2
* Use VM_ALLOC_NOBUSY to eliminate an unneeded vm_page_wakeup() call and theAlan Cox2004-10-241-4/+1