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

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
......@@ -470,7 +470,7 @@ static int emu8k_pcm_copy(struct snd_pcm_substream *subs,
/* convert to word unit */
pos = (pos << 1) + rec->loop_start[voice];
count <<= 1;
LOOP_WRITE(rec, pos, src, count, COPY_UESR);
LOOP_WRITE(rec, pos, src, count, COPY_USER);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment