aboutsummaryrefslogtreecommitdiff
path: root/sys/pci/if_rl.c
Commit message (Expand)AuthorAgeFilesLines
* Convert if_multiaddrs from LIST to TAILQ so that it can be traversedPoul-Henning Kamp2001-02-061-1/+1
* Use LIST_FOREACH() to traverse ifp->if_multiaddrs list, instead ofPoul-Henning Kamp2001-02-031-2/+1
* Implement MTX_RECURSE flag for mtx_init().Bosko Milekic2001-01-191-1/+1
* Use pci_get_powerstate()/pci_set_powerstate() which now exists in theBill Paul2000-12-181-23/+19
* Initialize/grab the mutex earlier in the attach phase, so thatBill Paul2000-12-041-3/+3
* Print a warning when we detect a Realtek 8139B chipRoger Hardiman2000-11-241-0/+10
* Fix 8-bit EEPROM breakage: compare against 0x8129, not 8129.Bill Paul2000-11-011-6/+6
* Fix support for cardbus cards:Bill Paul2000-10-301-1/+6
* Add PCI IDs for some additional cardbus cards. Yes, there really isBill Paul2000-10-281-1/+4
* Remove unneeded #include <machine/clock.h>Poul-Henning Kamp2000-10-151-1/+0
* Use device_get_nameunit(dev) as the mutex string when callingBill Paul2000-10-131-1/+1
* First round of converting network drivers from spls to mutexes. ThisBill Paul2000-10-131-31/+48
* Make all Ethernet drivers attach using ether_ifattach() and detach usingArchie Cobbs2000-07-131-6/+3
* Use the correct register name. s/PCI_COMMAND_STATUS_REG/PCIR_COMMAND/Peter Wemm2000-05-281-3/+3
* Move code to handle BPF and bridging for incoming Ethernet packets outArchie Cobbs2000-05-141-17/+0
* Apply patch to rl_rxeof() to really enforce payload alignment inBill Paul2000-05-051-10/+7
* Depend on miibus.Peter Wemm2000-04-291-0/+2
* Two fixes for the RealTek:Bill Paul2000-03-291-2/+8
* Fix a small typo in the comments.Bill Fumerola1999-12-281-1/+1
* Fix problem reported by Matt Dillon. Occasionally, very small receivedBill Paul1999-12-231-1/+14
* Fix usage of m_pullup().Bill Paul1999-11-161-1/+1
* Make some tweaks to the RealTek driver:Bill Paul1999-10-211-11/+25
* Change contigmalloc() lower memory bound from 1MB to 0 to improveBill Paul1999-09-251-1/+1
* As suggested by phk, unconditionalize BPF support in these drivers. SinceBill Paul1999-09-231-10/+2
* Tweak these for what I hope is the last time: change the DRIVER_MODULE()Bill Paul1999-09-221-1/+1
* Un-do the changes to the DRIVER_MODULE() declarations in these drivers.Bill Paul1999-09-201-2/+2
* Grrr. Okay, changing the devnames was a bad idea. Put them back the wayBill Paul1999-09-201-1/+1
* Fix the strings in the driver_t structs so that they match the new namesBill Paul1999-09-201-1/+1
* Goofed and didn't change the second DRIVER_MODULE() linking these withDavid E. O'Brien1999-09-201-1/+1
* Change the name we register with DRIVER_MODULE() to include the leadingDavid E. O'Brien1999-09-201-1/+1
* Add a pointer to "controller miibus0" for people who will not read thePeter Wemm1999-09-081-0/+1
* Convert the RealTek 8139 driver to newbus and miibus in one swell foop.Bill Paul1999-08-311-557/+258
* Don't restrict our requests for contiguous memory to addresses >= 1MB.Bruce Evans1999-08-291-1/+1
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-2/+2
* Clean up after removing sys/eventhandler.h from sys/systm.h at the lastMike Smith1999-08-211-2/+3
* Implement a new generic mechanism for attaching handler functions toMike Smith1999-08-211-6/+7
* Remove the definitions for the SiS 900 chip. This is not a RealTekBill Paul1999-07-221-6/+3
* Rename bpfilter to bpf.Dag-Erling Smørgrav1999-07-061-7/+7
* Change the cast in pci_map_port() from u_short * to pci_port_t * so itPeter Wemm1999-07-021-3/+3
* Fix up the RealTek 8139 driver to work on FreeBSD/alpha. This involves aBill Paul1999-06-191-8/+38
* Add support for SiS 900 chipset (PCI ID 0x1039/0x0900), which appears toBill Paul1999-05-301-3/+6
* Simplify the COMPAT_PCI_DRIVER/DATA_SET hack. We can add:Peter Wemm1999-05-091-6/+2
* Use COMPAT_PCI_DRIVER() for registration if it exists. This shouldn'tPeter Wemm1999-04-241-2/+6
* Merge in some updates for the RealTek driver, mainly:Bill Paul1999-04-121-141/+60
* Add support for still more cheapo 10/100 cards: Delta Electronics andBill Paul1999-02-231-3/+8
* Remember to initialize ifp->if_snd.ifq_maxlen.Bill Paul1999-02-011-2/+3
* Multicast code isn't quite correct. The RealTek wants the upper six bitsBill Paul1999-01-221-5/+5
* Small cosmetic tweak: in rl_rxeof(), use the constant RX_CMD_EMPTY_RXBUFBill Paul1999-01-161-3/+3
* Grrrr... The RealTek 8139 is yet another chip that includes the ethernetBill Paul1998-12-241-4/+13
* probe function changed from returning char * to const char *.Matthew Dillon1998-12-141-4/+4