aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/if_ndis
Commit message (Expand)AuthorAgeFilesLines
* Mechanically convert to if_inc_counter().Gleb Smirnoff2014-09-191-5/+5
* When anouncing link state changes on an 802.11 interface with a vap,John Baldwin2014-08-291-8/+11
* Include necessary headers that now are available due to pollutionGleb Smirnoff2013-10-282-0/+2
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-264-0/+5
* Give (*ext_free) an int return value allowing for very sophisticatedAndre Oppermann2013-08-251-2/+2
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-041-3/+3
* Convert a number of drivers to obtaining their parent DMA tag from theirScott Long2012-03-121-1/+1
* ether_ifattach() sets if_mtu to ETHERMTU, don't bother set it againKevin Lo2012-01-071-1/+0
* In sys/dev/if_ndis/if_ndis_pccard.c, fix a bug where a garbage rid wasDimitry Andric2012-01-031-1/+1
* Fix some net80211 enum nits:Bernhard Schmidt2011-12-171-7/+7
* - There's no need to overwrite the default device method with the defaultMarius Strobl2011-11-221-3/+1
* Revert the ndis part of r212122, windrv_stub.c already adds a MODULE_VERSIONAndrew Thompson2011-01-221-1/+0
* Don't try to free an unassigned pointer.Bernhard Schmidt2011-01-071-4/+1
* Fix a bug introduced in r216518. The ndis_subsys field holds the PCITijl Coosemans2010-12-191-7/+19
* Use convenience functions where possible instead of accessing the PCITijl Coosemans2010-12-181-9/+4
* Use bus_alloc_resource_any() instead of bus_alloc_resource(). Besides beingJohn Baldwin2010-12-162-16/+14
* There is no reason to call rt_ifmsg(), remove it.Bernhard Schmidt2010-10-191-4/+0
* WPA_CSE_WEP104 was being incorrectly checked.Rui Paulo2010-10-131-1/+1
* Add missing MODULE_VERSION() definitions, this resolves problems aroundAndrew Thompson2010-09-011-0/+1
* Remove extraneous semicolons, no functional changes.Martin Blapp2010-01-071-1/+1
* len must be int, not size_tRui Paulo2010-01-061-1/+1
* Add net80211 media status reporting.Rui Paulo2010-01-051-8/+19
* Set correct USB device descriptionAndrew Thompson2009-12-221-0/+1
* Pass all IEs to net80211.Rui Paulo2009-12-141-18/+5
* ndis_scan_results() can sleep if the scan results are not ready whenJohn Baldwin2009-12-021-9/+5
* Big style cleanup. While there remove references to FreeBSD versionsRui Paulo2009-11-022-124/+66
* Fix a bad use of NULL instead of zero for int comparison. Sorry for theColeman Kane2009-10-011-3/+3
* style(9) fixes (always compare pointers to NULL)Coleman Kane2009-10-011-3/+3
* Correct a bug that could lead to a kernel panic if a user attempted toColeman Kane2009-09-301-10/+3
* The ndis_scan function may be started after ndis vap have been destroyedColeman Kane2009-09-221-0/+5
* Fix regression in last set of commits. Submitted via e-mail and thenColeman Kane2009-07-201-0/+2
* Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/Robert Watson2009-06-261-3/+3
* Code cleanup by moving some repetitive code into an ndis_get_bssid_listColeman Kane2009-06-231-37/+39
* - Make struct usb_xfer opaque so that drivers can not access the internalsAndrew Thompson2009-06-234-4/+4
* Replace use of ic->ic_flags with vap->iv_flags to operate on per-vap flagsColeman Kane2009-06-181-8/+10
* s/usb2_/usb_|usbd_/ on all function names for the USB stack.Andrew Thompson2009-06-151-3/+3
* Fix an LORColeman Kane2009-06-101-6/+0
* Commit missed driver_info to driver_ivar change in usb_attach_args.Andrew Thompson2009-06-081-2/+2
* fix setting of ni_txrateSam Leffler2009-06-021-25/+1
* s/usb2_/usb_/ on all typedefs for the USB stack.Andrew Thompson2009-05-291-1/+1
* s/usb2_/usb_/ on all C structs for the USB stack.Andrew Thompson2009-05-282-5/+5
* Fix a few variable renames of usb2_mode outside dev/usb.Andrew Thompson2009-05-211-1/+1
* update for net80211 rx api changeSam Leffler2009-05-201-3/+1
* Create a taskqueue for each wireless interface which provides a serialisedAndrew Thompson2009-05-022-94/+56
* Only call ieee80211_start_all() if its a 80211 device.Andrew Thompson2009-04-161-1/+2
* o add a capability for drivers that require 802.3 encapsulation ofSam Leffler2009-04-081-1/+2
* Eliminate ic_myaddr so changing the mac address of a device works correctly:Sam Leffler2009-03-291-3/+2
* set NULL after free to avoid duplicate free.Weongyo Jeong2009-03-241-1/+3
* Some NDIS USB drivers try to call URB funcs like URB_FUNCTION_VENDOR_xxxWeongyo Jeong2009-03-182-0/+8
* o change a lock model based on HAL preemption lock to a normal mtx.Weongyo Jeong2009-03-123-4/+32