diff options
Diffstat (limited to 'sound/soc/codecs/rt1015.c')
| -rw-r--r-- | sound/soc/codecs/rt1015.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/sound/soc/codecs/rt1015.c b/sound/soc/codecs/rt1015.c index 6d490e2dbc25..66eb55b4ffd4 100644 --- a/sound/soc/codecs/rt1015.c +++ b/sound/soc/codecs/rt1015.c @@ -664,7 +664,7 @@ static int rt1015_hw_params(struct snd_pcm_substream *substream,  	snd_soc_component_update_bits(component, RT1015_TDM_MASTER,  		RT1015_I2S_DL_MASK, val_len);  	snd_soc_component_update_bits(component, RT1015_CLK2, -		RT1015_FS_PD_MASK, pre_div); +		RT1015_FS_PD_MASK, pre_div << RT1015_FS_PD_SFT);  	return 0;  } @@ -857,6 +857,7 @@ struct snd_soc_dai_driver rt1015_dai[] = {  			.rates = RT1015_STEREO_RATES,  			.formats = RT1015_FORMATS,  		}, +		.ops = &rt1015_aif_dai_ops,  	}  }; |