Changeset d337f74 in mainline
- Timestamp:
- 2013-08-19T13:00:43Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5b8e08e
- Parents:
- 62310d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/audio/sb16/dsp.c
r62310d7 rd337f74 248 248 case DSP_PLAYBACK_NOEVENTS: 249 249 #ifndef AUTO_DMA_MODE 250 dsp_start_current_active(dsp, SINGLE_DMA_16B_DA);250 dsp_start_current_active(dsp, SINGLE_DMA_16B_DA); 251 251 #endif 252 252 break; … … 255 255 case DSP_CAPTURE_NOEVENTS: 256 256 #ifndef AUTO_DMA_MODE 257 dsp_start_current_active(dsp, SINGLE_DMA_16B_DA);257 dsp_start_current_active(dsp, SINGLE_DMA_16B_DA); 258 258 #endif 259 259 break; 260 260 case DSP_CAPTURE_TERMINATE: 261 dsp_change_state(dsp, DSP_READY); 261 262 dsp_report_event(dsp, PCM_EVENT_CAPTURE_TERMINATED); 262 263 async_exchange_end(dsp->event_exchange); 263 264 dsp->event_exchange = NULL; 264 dsp_change_state(dsp, DSP_READY);265 265 break; 266 266 case DSP_PLAYBACK_TERMINATE: 267 dsp_change_state(dsp, DSP_READY); 267 268 dsp_report_event(dsp, PCM_EVENT_PLAYBACK_TERMINATED); 268 269 async_exchange_end(dsp->event_exchange); 269 270 dsp->event_exchange = NULL; 270 dsp_change_state(dsp, DSP_READY);271 271 break; 272 272 default:
Note:
See TracChangeset
for help on using the changeset viewer.