From: Jeeja KP Date: Tue, 27 Oct 2015 00:22:46 +0000 (+0900) Subject: ASoC: Intel: Skylake: Fix to add 32 bit in update FE params X-Git-Tag: v4.5-rc1~80^2~26^2~1^2~6^4~99 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6654f39eb4a65b61c3550be352662f57a2701bbc;p=karo-tx-linux.git ASoC: Intel: Skylake: Fix to add 32 bit in update FE params In case of 32 bit, the FE update params returns error as it falls thru to default case. This patch adds 32 bit depth handling in update FE params. Signed-off-by: Jeeja KP Signed-off-by: Vinod Koul Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/skylake/skl-topology.c b/sound/soc/intel/skylake/skl-topology.c index 98ccd42b8867..313a02d8db01 100644 --- a/sound/soc/intel/skylake/skl-topology.c +++ b/sound/soc/intel/skylake/skl-topology.c @@ -809,6 +809,7 @@ int skl_tplg_update_pipe_params(struct device *dev, break; case SKL_DEPTH_24BIT: + case SKL_DEPTH_32BIT: format->bit_depth = SKL_DEPTH_32BIT; break;