Index: uspace/drv/audio/sb16/dsp.c
===================================================================
--- uspace/drv/audio/sb16/dsp.c	(revision ad42844f5b4dec77c5d0e09284d520693f43cd43)
+++ uspace/drv/audio/sb16/dsp.c	(revision fa91c0f9439c4e8812fbfb112e834da880e5fd06)
@@ -215,5 +215,5 @@
 	}
 
-	if (dsp->status == DSP_RECORDING) {
+	if (dsp->status == DSP_CAPTURE) {
 		sb_dsp_start_active(dsp, SINGLE_DMA_16B_AD);
 	}
@@ -232,7 +232,7 @@
 			    PCM_EVENT_FRAMES_PLAYED, dsp->active.frame_count);
 			break;
-		case DSP_RECORDING:
+		case DSP_CAPTURE:
 			async_msg_1(dsp->event_exchange,
-			    PCM_EVENT_FRAMES_RECORDED, dsp->active.frame_count);
+			    PCM_EVENT_FRAMES_CAPTURED, dsp->active.frame_count);
 			break;
 		default:
@@ -251,5 +251,5 @@
 {
 	switch(cap) {
-	case AUDIO_CAP_RECORD:
+	case AUDIO_CAP_CAPTURE:
 	case AUDIO_CAP_PLAYBACK:
 	case AUDIO_CAP_INTERRUPT:
@@ -393,5 +393,5 @@
 }
 
-int sb_dsp_start_record(sb_dsp_t *dsp, unsigned frames,
+int sb_dsp_start_capture(sb_dsp_t *dsp, unsigned frames,
     unsigned channels, unsigned sampling_rate, pcm_sample_format_t format)
 {
@@ -401,5 +401,5 @@
 
 	/* Check supported parameters */
-	ddf_log_debug("Requested record: %u frames, %uHz, %s, %u channel(s).",
+	ddf_log_debug("Requested capture: %u frames, %uHz, %s, %u channel(s).",
 	    frames, sampling_rate, pcm_sample_format_str(format), channels);
 	if (sb_dsp_test_format(dsp, &channels, &sampling_rate, &format) != EOK)
@@ -433,15 +433,15 @@
 	    "(~1/%u sec)", dsp->active.samples,
 	    sampling_rate / (dsp->active.samples * channels));
-	dsp->status = DSP_RECORDING;
-
-	return EOK;
-}
-
-int sb_dsp_stop_record(sb_dsp_t *dsp)
+	dsp->status = DSP_CAPTURE;
+
+	return EOK;
+}
+
+int sb_dsp_stop_capture(sb_dsp_t *dsp)
 {
 	assert(dsp);
 	sb_dsp_write(dsp, DMA_16B_EXIT);
-	ddf_log_debug("Stopped recording");
-	async_msg_0(dsp->event_exchange, PCM_EVENT_RECORDING_TERMINATED);
+	ddf_log_debug("Stopped capture");
+	async_msg_0(dsp->event_exchange, PCM_EVENT_CAPTURE_TERMINATED);
 	async_exchange_end(dsp->event_exchange);
 	dsp->event_exchange = NULL;
