Skip to content

Commit

Permalink
ALSA: aaci - Fix a typo
Browse files Browse the repository at this point in the history
Fixed a typo of the max buffer size specified for buffer allocation
changed in the commit d679732.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
tiwai committed Dec 18, 2009
1 parent 3e85fd6 commit d494643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/arm/aaci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ static int __devinit aaci_init_pcm(struct aaci *aaci)
snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &aaci_playback_ops);
snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &aaci_capture_ops);
snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
NULL, 0, 64 * 104);
NULL, 0, 64 * 1024);
}

return ret;
Expand Down

0 comments on commit d494643

Please sign in to comment.