summaryrefslogtreecommitdiff
path: root/sys/dev/audio
AgeCommit message (Expand)Author
2020-02-22remove some unnecessary includes of internal UVM headers.chs
2020-02-22Make calling get_props() lockless.isaki
2020-02-22On audio_[pr]mixer_halt(), it's better to reset parameters in intr_lock.isaki
2020-02-22Add KASSERTs. audio_[pr]mixer_start() need exlock.isaki
2020-02-22Move #if DIAGNOSTIC..#endif to correct place.isaki
2020-02-22hw_if->query_format is already mandatory method. Drop null checks.isaki
2020-02-22Improve KASSERT messages.isaki
2020-02-22Change two aprint_error_dev() to device_printf() (and improve messages).isaki
2020-02-22const-ify. These arguments are no longer written back.isaki
2020-02-22Fix/Update comments.isaki
2020-02-22Limit the number of channels that userland apps can set (by AUDIO_SETINFO)isaki
2020-02-15Remove incorrect KASSERT(!mutex_owned()).isaki
2020-01-25defopt AUDIO_BLK_MSjmcneill
2020-01-11Simplify async_mixer handling.isaki
2020-01-11Remove old debug #ifdefs.isaki
2020-01-08Fix an resource leak on audiobell close.isaki
2020-01-08Remove obsoleted comment.isaki
2020-01-08Move mutex_exit() correct place to protect sc_async_mixer.isaki
2019-12-27s/sucess/success/ in comment.msaitoh
2019-12-26Improve and simplify around audio_realloc().isaki
2019-12-26Use M_WAITOK instead of M_NOWAIT.isaki
2019-11-06Fix a wrong calculation of recording ring buffer. Reported onisaki
2019-10-18 s/initalize/initialize/ in comment or printf message.msaitoh
2019-09-06Tune some debug message level.isaki
2019-08-29Fix lock assertion on async I/O mode.isaki
2019-08-23Add missing mutex, we were hitting a KASSERT.maxv
2019-07-10Use kmem_alloc/free() instead of old kern_malloc/free().isaki
2019-07-10Fix freem() argument. The 3rd argument is bufsize, not direction...isaki
2019-07-07Avoid memory reallocation on SET_FORMAT.isaki
2019-07-07Rearrange some KASSERT and debug messages, to sync with others.isaki
2019-07-07Fix to evaluate the validity of this track at earlier on audio_read().isaki
2019-07-06Implement auto recovery of the mixing volume.isaki
2019-06-26Improve debug message and remove duplicated one.isaki
2019-06-26Improve audiobell (and interfaces with audio).isaki
2019-06-25Put the lowered mixing volume back when all playback tracks are closed.isaki
2019-06-23Restore sysctl_teardown which was unintentionally dropped.isaki
2019-06-19Don't wait until a block is filled.isaki
2019-06-12Fill silence if the last block of the first track is not filled.isaki
2019-06-10Use AUDIO_SCALEDOWN() macro rather than seemingly strange ifdefs.isaki
2019-06-10Add missing newline to some error messages.isaki
2019-06-10Call get_props() once at attach.isaki
2019-06-08Improve checking and displaying property.isaki
2019-06-08Clean get_props().isaki
2019-06-06Revert rev1.7.isaki
2019-05-25Fix typo in comment.isaki
2019-05-23Remove unnecessary file lock.isaki
2019-05-21Adjust debug message. Inspired from PR kern/54177.isaki
2019-05-13audio_open:nakayama
2019-05-13sysctl "multiuser" type is CTLTYPE_BOOL, so use bool instead of int.nakayama
2019-05-13audio_hw_probe:nakayama