Changeset 92b638c in mainline for uspace/drv/audio/sb16/pcm_iface.c
- Timestamp:
- 2012-08-30T11:41:48Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5eed99d
- Parents:
- ed3816d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/drv/audio/sb16/pcm_iface.c ¶
red3816d r92b638c 96 96 } 97 97 98 static int sb_stop_playback(ddf_fun_t *fun )98 static int sb_stop_playback(ddf_fun_t *fun, bool immediate) 99 99 { 100 return sb_dsp_stop_playback(fun_to_dsp(fun) );100 return sb_dsp_stop_playback(fun_to_dsp(fun), immediate); 101 101 } 102 102 … … 108 108 } 109 109 110 static int sb_stop_capture(ddf_fun_t *fun )110 static int sb_stop_capture(ddf_fun_t *fun, bool immediate) 111 111 { 112 return sb_dsp_stop_capture(fun_to_dsp(fun) );112 return sb_dsp_stop_capture(fun_to_dsp(fun), immediate); 113 113 } 114 114
Note:
See TracChangeset
for help on using the changeset viewer.