summaryrefslogtreecommitdiffstats
path: root/sys/dev/radio.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix indentation of a break statement. No binary change.jsg2016-09-221-2/+2
|
* remove uneeded proc.h includesjsg2014-09-141-2/+1
| | | | ok mpi@ kspillner@
* Remove config_activate() and DVACT_ACTIVATE. PCMCIA's the only thingmatthew2011-07-031-4/+1
| | | | | | | | that's ever used it, and it's long since been changed to use DVACT_{QUIESCE,SUSPEND,RESUME} instead. ok deraadt@, dlg@; miod@ also agreed with this idea when I brought it up a few weeks ago
* Get rid of devact enum, substitute it with an int and coresponding defines.pirofti2009-10-131-3/+3
| | | | | | This is needed for the addition of further suspend/resume actions. Okay deraadt@, marco@.
* In a drivers activate() entry point, if on DVACT_DEACTIVATE it doesmiod2006-06-231-2/+1
| | | | | | something, then it MUST return zero on DVACT_ACTIVATE, not EOPNOTSUPP; this very popular bug has been cut and pasted a lot of times... ok deraadt@ mickey@
* make radio attach, not steal other audio attachmentsmickey2002-05-301-8/+9
|
* check if device was opened for writing for modifying ops, also it's enotty not einval; from Vladimir Popov <jumbo@narod.ru> and memickey2002-01-101-2/+7
|
* support detach, from netbsdmickey2002-01-051-9/+47
|
* probe does not print anythingmickey2002-01-021-3/+2
|
* update for radio drivers from tm@oganer.net und jumbo@narod.rumickey2001-12-051-9/+37
|
* Device independent framework for FM-radio driver.gluk2001-10-041-0/+136
Work by Maxim Tsyplakov <tm@oganer.net>, Vladimir Popov <jumbo@narod.ru>