From: Jeeja KP Date: Sat, 1 Aug 2015 14:10:39 +0000 (+0530) Subject: ASoC: Intel: Skylake: Fix the NHLT rate size X-Git-Tag: v4.3-rc1~77^2~7^2~12^2~6 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9f2dd0270d81b283e11e39f9276113aef391e420;p=karo-tx-linux.git ASoC: Intel: Skylake: Fix the NHLT rate size Sampling rate type needs to be u32 instead of u8, nhlt wav format description expected u32 for rate, passing u8 will fetch NULL config in skl_get_ep_blob(). Signed-off-by: Jeeja KP Signed-off-by: Vinod Koul Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/skylake/skl-nhlt.c b/sound/soc/intel/skylake/skl-nhlt.c index 5c0895eaa10a..a14009b47b29 100644 --- a/sound/soc/intel/skylake/skl-nhlt.c +++ b/sound/soc/intel/skylake/skl-nhlt.c @@ -56,7 +56,7 @@ void skl_nhlt_free(void __iomem *addr) static struct nhlt_specific_cfg *skl_get_specific_cfg( struct device *dev, struct nhlt_fmt *fmt, - u8 no_ch, u8 rate, u16 bps) + u8 no_ch, u32 rate, u16 bps) { struct nhlt_specific_cfg *sp_config; struct wav_fmt *wfmt;