Index: uspace/drv/audio/sb16/dsp.c
===================================================================
--- uspace/drv/audio/sb16/dsp.c	(revision ad42844f5b4dec77c5d0e09284d520693f43cd43)
+++ uspace/drv/audio/sb16/dsp.c	(revision d86c973619c86de977bf698bcb1ebae602e372ce)
@@ -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;
Index: uspace/drv/audio/sb16/dsp.h
===================================================================
--- uspace/drv/audio/sb16/dsp.h	(revision ad42844f5b4dec77c5d0e09284d520693f43cd43)
+++ uspace/drv/audio/sb16/dsp.h	(revision d86c973619c86de977bf698bcb1ebae602e372ce)
@@ -63,5 +63,5 @@
 	enum {
 		DSP_PLAYBACK,
-		DSP_RECORDING,
+		DSP_CAPTURE,
 		DSP_STOPPED,
 	} status;
@@ -83,7 +83,7 @@
     unsigned channels, unsigned sample_rate, pcm_sample_format_t format);
 int sb_dsp_stop_playback(sb_dsp_t *dsp);
-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 sample_rate, pcm_sample_format_t format);
-int sb_dsp_stop_record(sb_dsp_t *dsp);
+int sb_dsp_stop_capture(sb_dsp_t *dsp);
 
 #endif
Index: uspace/drv/audio/sb16/pcm_iface.c
===================================================================
--- uspace/drv/audio/sb16/pcm_iface.c	(revision ad42844f5b4dec77c5d0e09284d520693f43cd43)
+++ uspace/drv/audio/sb16/pcm_iface.c	(revision d86c973619c86de977bf698bcb1ebae602e372ce)
@@ -104,5 +104,5 @@
 }
 
-static int sb_start_record(ddf_fun_t *fun, unsigned frames,
+static int sb_start_capture(ddf_fun_t *fun, unsigned frames,
     unsigned channels, unsigned sample_rate, pcm_sample_format_t format)
 {
@@ -110,14 +110,14 @@
 	assert(fun->driver_data);
 	sb_dsp_t *dsp = fun->driver_data;
-	return sb_dsp_start_record(
+	return sb_dsp_start_capture(
 	    dsp, frames, channels, sample_rate, format);
 }
 
-static int sb_stop_record(ddf_fun_t *fun)
+static int sb_stop_capture(ddf_fun_t *fun)
 {
 	assert(fun);
 	assert(fun->driver_data);
 	sb_dsp_t *dsp = fun->driver_data;
-	return sb_dsp_stop_record(dsp);
+	return sb_dsp_stop_capture(dsp);
 }
 
@@ -134,6 +134,6 @@
 	.stop_playback = sb_stop_playback,
 
-	.start_record = sb_start_record,
-	.stop_record = sb_stop_record
+	.start_capture = sb_start_capture,
+	.stop_capture = sb_stop_capture,
 };
 /**
