1
0
Fork 0

ALSA: AT73C213: Rectify misleading comment.

The Atmel SSC can divide by even numbers, not only powers of two.

Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
hifive-unleashed-5.1
Peter Rosin 2010-11-10 15:55:05 +01:00 committed by Takashi Iwai
parent fa2b30af84
commit e2e9566230
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ static int snd_at73c213_set_bitrate(struct snd_at73c213 *chip)
if (max_tries < 1)
max_tries = 1;
/* ssc_div must be a power of 2. */
/* ssc_div must be even. */
ssc_div = (ssc_div + 1) & ~1UL;
if ((ssc_rate / (ssc_div * 2 * 16)) < BITRATE_MIN) {