summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/if_uralvar.h
Commit message (Collapse)AuthorAgeFilesLines
* o Send management frames at the lowest possible rate.damien2005-11-291-0/+2
| | | | | | o Include rate in the Rx radiotap code. o Fix RSSI value in the Rx path. o Minor tweaks.
* Second part of the AMRR commit.damien2005-11-181-0/+4
| | | | | Enable automatic rate adaptation in BSS operating mode. Works great here. Will need a lot of testing though.
* Add some initial bits (currently unused) for upcoming AMRR support.damien2005-11-151-0/+10
| | | | | | | AMRR = Adaptive Multi Rate Retry algorithm More information: http://www-sop.inria.fr/rapports/sophia/RR-5208.html More to come.
* Make sure that all the necessary USB endpoints are found during devicedamien2005-07-081-2/+2
| | | | | | | attachment. Reviewed by: silby (mentor) Approved by: re (scottl)
* Stop embedding struct ifnet at the top of driver softcs. Instead thebrooks2005-06-101-1/+1
| | | | | | | | | | | | | | | | | | | | struct ifnet or the layer 2 common structure it was embedded in have been replaced with a struct ifnet pointer to be filled by a call to the new function, if_alloc(). The layer 2 common structure is also allocated via if_alloc() based on the interface type. It is hung off the new struct ifnet member, if_l2com. This change removes the size of these structures from the kernel ABI and will allow us to better manage them as interfaces come and go. Other changes of note: - Struct arpcom is no longer referenced in normal interface code. Instead the Ethernet address is accessed via the IFP2ENADDR() macro. To enforce this ac_enaddr has been renamed to _ac_enaddr. - The second argument to ether_ifattach is now always the mac address from driver private storage rather than sometimes being ac_enaddr. Reviewed by: sobomax, sam
* Initial import of ipw, iwi, ral and ural drivers:damien2005-04-181-0/+140
ipw - Intel PRO/Wireless 2100 iwi - Intel PRO/Wireless 2200BG/2225BG/2915ABG ral - Ralink Technology RT2500 ural - Ralink Technology RT2500USB Approved by: silby (mentor)
OpenPOWER on IntegriCloud