diff options
author | Takashi Iwai <tiwai@suse.de> | 2018-08-02 07:40:19 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-08-02 07:43:47 +0200 |
commit | 789b7f43858f1c74a1c528e8b8f78c78624800d8 (patch) | |
tree | 439461b2b2aa3cd80e2c90c19436e3eb100893b9 /sound/isa/sb | |
parent | 11175556eec58b27a1398e80f8b1302314f2242c (diff) | |
download | linux-stable-789b7f43858f1c74a1c528e8b8f78c78624800d8.tar.gz linux-stable-789b7f43858f1c74a1c528e8b8f78c78624800d8.tar.bz2 linux-stable-789b7f43858f1c74a1c528e8b8f78c78624800d8.zip |
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 <tiwai@suse.de>
Diffstat (limited to 'sound/isa/sb')
-rw-r--r-- | sound/isa/sb/emu8000_pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/sb/emu8000_pcm.c b/sound/isa/sb/emu8000_pcm.c index bc5af71d3bdb..f46f6ec3ea0c 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; } |