Merge tag 'bf0922056f39fab4e56d9ddce2ef6c3eceb1b0ae' into android12-base

"LA.UM.9.12.r1-14000-SMxx50.0"

* tag 'bf0922056f39fab4e56d9ddce2ef6c3eceb1b0ae':
  asoc: changes to fix KW errors
  asoc: changes to fix KW errors

Change-Id: I00c61b5e0b3eb50e7379fa4c0557fa1d40f2e781
Signed-off-by: UtsavBalar1231 <utsavbalar1231@gmail.com>
This commit is contained in:
UtsavBalar1231 2022-03-04 06:06:58 +05:30
commit 95c305c427

View File

@ -1,5 +1,6 @@
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*/
#include <linux/init.h>
@ -1665,6 +1666,11 @@ static int msm_pcm_routing_channel_mixer_v2(int fe_id, bool perf_mode,
}
be_id = channel_mixer_v2[fe_id][sess_type].port_idx - 1;
if (be_id < 0 || be_id >= MSM_BACKEND_DAI_MAX) {
pr_err("%s: Received out of bounds be_id %d\n",
__func__, be_id);
return -EINVAL;
}
channel_mixer_v2[fe_id][sess_type].input_channels[0] =
channel_mixer_v2[fe_id][sess_type].input_channel;