From: Takashi Iwai Date: Thu, 2 Aug 2018 05:40:19 +0000 (+0200) Subject: ALSA: sb: Fix a typo X-Git-Tag: v4.19~308^2~6^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=789b7f43858f1c74a1c528e8b8f78c78624800d8;p=platform%2Fkernel%2Flinux-rpi.git ALSA: sb: Fix a typo There was a typo of COPY_USER in the dead code (that is disabled as default). Fixes: 4b83eff81c81 ("ALSA: sb: Convert to the new PCM ops") Signed-off-by: Takashi Iwai --- diff --git a/sound/isa/sb/emu8000_pcm.c b/sound/isa/sb/emu8000_pcm.c index bc5af71d..f46f6ec 100644 --- a/sound/isa/sb/emu8000_pcm.c +++ b/sound/isa/sb/emu8000_pcm.c @@ -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; }