summaryrefslogtreecommitdiffstats
path: root/sys/dev/an
Commit message (Collapse)AuthorAgeFilesLines
...
* Remember to assign an_dev to device_t before calling an_attach().wpaul2000-10-133-0/+13
|
* Convert the Aironet driver to use mutexes instead of spls.wpaul2000-10-134-28/+59
|
* MF4: fix style(9) whitespace breakage.peter2000-08-081-3/+3
|
* Make all Ethernet drivers attach using ether_ifattach() and detach usingarchie2000-07-134-7/+5
| | | | | | | | | ether_ifdetach(). The former consolidates the operations of if_attach(), ng_ether_attach(), and bpfattach(). The latter consolidates the corresponding detach operations. Reviewed by: julian, freebsd-net
* - Add suser check before SIOCSAIRONET.roberto2000-06-181-3/+10
| | | | | | - Fix a splimp() w/o splx bug in the ioctl routine while I'm here. Submitted by: Aaron Campbell <aaron@openbsd.org>
* Oops, nearly forgot to commit this one. Use correct register names, orpeter2000-05-281-3/+3
| | | | this will not compile without COMPAT_OLDPCI.
* Move code to handle BPF and bridging for incoming Ethernet packets outarchie2000-05-141-13/+0
| | | | | | | | | | | | | | | of the individual drivers and into the common routine ether_input(). Also, remove the (incomplete) hack for matching ethernet headers in the ip_fw code. The good news: net result of 1016 lines removed, and this should make bridging now work with *all* Ethernet drivers. The bad news: it's nearly impossible to test every driver, especially for bridging, and I was unable to get much testing help on the mailing lists. Reviewed by: freebsd-net
* Remove ~25 unneeded #include <sys/conf.h>phk2000-04-193-3/+0
| | | | Remove ~60 unneeded #include <sys/malloc.h>
* Remove unloaded printf. We do this now in the newbus layer.imp2000-04-171-1/+0
|
* Fix an instance of rman_get_start() than should be rman_get_bushandle().wpaul2000-01-161-1/+1
|
* Actually read the PCI device ID when testing the device ID value againstwpaul2000-01-151-1/+1
| | | | the supported devices list.
* Add driver support for the Aironet 4500/4800 series wireless 802.11wpaul2000-01-146-0/+3444
NICs. (Finally!) The PCMCIA, ISA and PCI varieties are all supported, though only the ISA and PCI ones will work on the alpha for now. PCCARD, ISA and PCI attachments are all provided. Also provided an ancontrol(8) utility for configuring the NIC, man pages, and updated pccard.conf.sample. ISA cards are supported in both ISA PnP and hard-wired mode, although you must configure the kernel explicitly to support the hardwired mode since you have to know the I/O address and port ahead of time. Special thanks to Doug Ambrisko for doing the initial newbus hackery and getting it to work in infrastructure mode.
OpenPOWER on IntegriCloud