Skip to content

Commit 3e8c672

Browse files
committed
bcm2708-i2s: Update bclk_ratio to more correct values
1 parent bd082ed commit 3e8c672

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sound/soc/bcm/bcm2708-i2s.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,15 +411,15 @@ static int bcm2708_i2s_hw_params(struct snd_pcm_substream *substream,
411411
switch (params_format(params)) {
412412
case SNDRV_PCM_FORMAT_S16_LE:
413413
data_length = 16;
414-
bclk_ratio = 40;
414+
bclk_ratio = 50;
415415
break;
416416
case SNDRV_PCM_FORMAT_S24_LE:
417417
data_length = 24;
418-
bclk_ratio = 40;
418+
bclk_ratio = 50;
419419
break;
420420
case SNDRV_PCM_FORMAT_S32_LE:
421421
data_length = 32;
422-
bclk_ratio = 80;
422+
bclk_ratio = 100;
423423
break;
424424
default:
425425
return -EINVAL;

0 commit comments

Comments
 (0)