Re: [PATCH v2 2/6] ASoC: qcom: lpass-macro-common: Add missing v2.9 version string
From: Srinivas Kandagatla
Date: Mon Sep 14 2026 - 08:08:13 EST
On 9/10/26 10:46 AM, Mohammad Rafi Shaik wrote:
> LPASS_CODEC_VERSION_2_9 is detected by lpass-va-macro.c and consumed by
> lpass-wsa-macro.c, but lpass_macro_get_codec_version_string() never
> learned about it, so the probe log reports "LPASS Codec Version NA" on
> those parts.
>
> Add the missing case.
>
> Signed-off-by: Mohammad Rafi Shaik <mohammad.rafi.shaik@xxxxxxxxxxxxxxxx>
> ---
LGTM
Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@xxxxxxxxxxxxxxxx>
> sound/soc/codecs/lpass-macro-common.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/sound/soc/codecs/lpass-macro-common.h b/sound/soc/codecs/lpass-macro-common.h
> index 10ad68201..573b2145e 100644
> --- a/sound/soc/codecs/lpass-macro-common.h
> +++ b/sound/soc/codecs/lpass-macro-common.h
> @@ -68,6 +68,8 @@ static inline const char *lpass_macro_get_codec_version_string(int version)
> return "v2.7";
> case LPASS_CODEC_VERSION_2_8:
> return "v2.8";
> + case LPASS_CODEC_VERSION_2_9:
> + return "v2.9";
> default:
> break;
> }
>