Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 789b7f43 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: sb: Fix a typo



There was a typo of COPY_USER in the dead code (that is disabled
as default).

Fixes: 4b83eff8 ("ALSA: sb: Convert to the new PCM ops")
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 11175556
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -470,7 +470,7 @@ static int emu8k_pcm_copy(struct snd_pcm_substream *subs,
	/* convert to word unit */
	/* convert to word unit */
	pos = (pos << 1) + rec->loop_start[voice];
	pos = (pos << 1) + rec->loop_start[voice];
	count <<= 1;
	count <<= 1;
	LOOP_WRITE(rec, pos, src, count, COPY_UESR);
	LOOP_WRITE(rec, pos, src, count, COPY_USER);
	return 0;
	return 0;
}
}