summaryrefslogtreecommitdiff
path: root/sys/dev/ic/ath.c
AgeCommit message (Expand)Author
2007-10-13remove unneeded declarations that shadows existing vars; ok by many.Federico G. Schwindt
2007-10-01More easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...'.Kenneth R Westerback
2007-09-18Only the most obvious bzero() -> M_ZERO changes. No cast changes, noKenneth R Westerback
2007-07-18replace the ieee80211_wepkey structure with a more generic ieee80211_keyDamien Bergamini
2007-06-16constifyDamien Bergamini
2007-06-06the copyright holder changed the license from "dual bsd/gpl" to beReyk Floeter
2007-05-09remove the internal wrapper functions for ieee80211_mhz2ieee andReyk Floeter
2007-04-13The integrated Atheros NICs found in IBM/Lenovo ThinkPads use the sameReyk Floeter
2007-01-03M_DUP_PKTHDR() cleanup. On static buffers M_DUP_PKTHDR() will leak mbuf tags.Claudio Jeker
2006-12-14fix a minor bug in the tx data queue setup by using the right queueReyk Floeter
2006-11-06figured out by tdeval@:Reyk Floeter
2006-10-19s/Mhz/MHz/ in comments and printf() stringsTom Cosgrove
2006-10-14fix the slightly different reset procedure of single chip variants.Reyk Floeter
2006-09-19attach and enable the newer chipset generations AR2413, AR5413, andReyk Floeter
2006-09-19detect the newer single chip generations AR2413, AR5413 and AR5224 butReyk Floeter
2006-09-19"pure g" is a special, non-standard ofdm-only mode. use the standardReyk Floeter
2006-09-19use the correct antenna mode settings and fix a bug in the txReyk Floeter
2006-06-23set the RSSI Max value in ath(4) and use the new RSSI radiotap headerReyk Floeter
2006-06-23In a drivers activate() entry point, if on DVACT_DEACTIVATE it doesMiod Vallat
2006-05-22Attach routines can fail before calling *hook_establish(), and theyKenneth R Westerback
2006-05-08Make ath_attach() return error if the RF is unsupported so the PCI codePedro Martelletto
2006-04-20printf() calls with the format string spanning several lines should not haveMiod Vallat
2006-03-25allow bpf(4) to ignore packets based on their direction (inbound orDamien Miller
2006-02-20Fix kernel builds without bpfilter. Linking is still broken.Damien Bergamini
2006-01-04Remove redundant calls to bpfdetach.Can Erkin Acar
2005-12-10Initialize flags before using it. Spotted by lint.Kenneth R Westerback
2005-11-11more verbose error message for the "bogus xmit rate" problemReyk Floeter
2005-09-23cleanup and simplify the regulation domain handling. some devices areReyk Floeter
2005-09-22remove the very basic ath(4) rate control implementation and useReyk Floeter
2005-09-19don't attach unsupported radio chipsetsReyk Floeter
2005-09-08use ieee80211_iterate_nodes to iterate the nodes and add a extra checkReyk Floeter
2005-09-08fix a possible division by zero by using minimal default values for theReyk Floeter
2005-09-08Remove the last of the FreeBSD compatiblity goop.Jonathan Gray
2005-09-08Remove FreeBSD if_printf compat function from net80211.Jonathan Gray
2005-08-21update the 802.11 station address if the ethernet lladdr has been changed.Reyk Floeter
2005-08-21remove the IEEE80211_C_SCANALL capability, it should be used onReyk Floeter
2005-08-17fix led states and knf. this also enables support for the software ledReyk Floeter
2005-07-30remove a useless timeout after tx (decrease nasty delays whileReyk Floeter
2005-07-19- the self linked hardware rx descriptor list does not work in hostapReyk Floeter
2005-07-18remove trailing newline in panic(9); ok millert@ and deraadt@Federico G. Schwindt
2005-05-28fix hostap modeReyk Floeter
2005-05-27re-enable gpio init even without using the gpio(4) frameworkReyk Floeter
2005-05-27- disable the gpio user interface for now, it's just an unimportantReyk Floeter
2005-05-24ath_hal_rx_monitor should be used for link state monitoring instead ofReyk Floeter
2005-05-11extra checks for monitor modeReyk Floeter
2005-05-08change the dmesg output: print known chipset names, don't print theReyk Floeter
2005-04-18beautify the code by renaming HAL functions with capitalized words (iReyk Floeter
2005-04-08move reset of HAL descriptors to ath.cReyk Floeter
2005-04-06pad keys with zeros to a supported key length. this is bad but seemsReyk Floeter
2005-04-06<sys/types.h> is not needed with <sys/param.h>Kevin Lo