summaryrefslogtreecommitdiffstats
path: root/sys/dev/cardbus/if_ath_cardbus.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.mpi2015-11-241-2/+1
|
* unifdef INETtedu2014-12-221-3/+1
|
* Use <sys/endian.h> instead of <machine/endian.h>guenther2014-12-191-3/+2
| | | | ok dlg@ mpi@ bcook@ millert@ miod@
* All PWR_{SUSPEND,RESUME} can now be replaced by DVACT_{SUSPEND,RESUME}deraadt2010-09-061-2/+2
|
* Give cardbus the pci_chipset_tag_t from pccbb and push it out throughjsg2010-03-271-7/+9
| | | | | | | cardbus_attach_args so we can switch to using proper pci config space functions instead of callback based wrappers. ok oga@ krw@ kettenis@
* Bring back cardbus_chipset_tag_t which is in practice ajsg2010-03-271-4/+4
| | | | | | | pointer to the pccbb softc, to distinguish it from a pci_chipset_tag_t which can be passed to the normal pci functions. Suggested by and ok kettenis@
* Remove some cardbus defines and types which are identical tojsg2010-03-221-15/+15
| | | | | | their pci counterparts, similar to recent changes in NetBSD. ok oga@ deraadt@ jasper@
* Use the bus_size_t in the ath_softc.jsing2008-06-141-4/+3
| | | | ok jsg@
* If you have #if FOO > 0 parts of your softc bejsg2008-06-131-7/+1
| | | | | | | | | | | | | | | | | | | sure to #include "foo.h" in all code that uses the softc, otherwise some object files will have a different idea of how big the softc struct is. This will result in things like part of the softc, say the interrupt handler being overridden by other data. Putting printfs in the main object file will look fine as it has the right idea as to what the size is. It is only after several hours debugging that you start to figure out what the hell is going on. jsing started trying to figure out the problem and got hints from kettenis that it likely wasn't an interrupt problem, after quite a bit of head scratching with joel I eventually spotted the problem. ok reyk@ jsing@
* Add a symbolic name parameter to cardbus_intr_establish().grange2006-10-121-2/+2
| | | | | | Count cardbus devices interrupts in cbb(4) using evcount(9). ok deraadt@
* removal of '#ifdef rbus ... #else ...' directives, we use rbus in allfkr2006-06-211-5/+1
| | | | | | | | cases anyways, so we might as well remove code (the !rbus case) thats been dead throughout the last years and just use the rbus code without ifdefs. brad, miod "I am all for this diff" ok deraadt, mickey
* remove printf on ath_cardbus_power; reyk@ ok.fgsch2006-01-291-4/+1
|
* remove the very basic ath(4) rate control implementation and usereyk2005-09-221-1/+2
| | | | | | | rssadapt(9) instead. this may need some further work but now it's in the right place and shared with other drivers (like ral(4)). yes jsg@
* Remove the last of the FreeBSD compatiblity goop.jsg2005-09-081-2/+1
| | | | ok reyk@
* useless netns includes; there was no NS stuff ever herehenning2005-06-081-6/+1
|
* make sure to enable socket on resume.robert2005-05-281-13/+3
| | | | | | in order for the enable to work disable the socket on suspend. ok jsg@, mickey@
* Fix scoping error when unhooking the interrupt handler. reyk@ okaaron2005-02-161-2/+3
|
* support the gpio found on ath(4) devices.reyk2004-11-231-7/+6
| | | | ok grange@
* imported Sam Leffler's ath driver for atheros multimode wireless nicsreyk2004-11-021-0/+340
from NetBSD and FreeBSD. ok deraadt@