Skip to content

Commit

Permalink
ALSA: sb: Fix a typo
Browse files Browse the repository at this point in the history
There was a typo of COPY_USER in the dead code (that is disabled
as default).

Fixes: 4b83eff ("ALSA: sb: Convert to the new PCM ops")
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Aug 2, 2018
1 parent 1117555 commit 789b7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/isa/sb/emu8000_pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 789b7f4

Please sign in to comment.