Re: [PATCH] ASoC: fsl_sai: fix getting version from VERID

2023-02-07 Thread Mark Brown
On Tue, 07 Feb 2023 17:04:24 +0800, Shengjiu Wang wrote: > The version information is at the bit31 ~ bit16 in the VERID > register, so need to right shift 16bit to get it, otherwise > the result of comparison "sai->verid.version >= 0x0301" is > wrong. > > Applied to https://git.kernel.org/pu

Re: [PATCH] ASoC: fsl_sai: fix getting version from VERID

2023-02-07 Thread Iuliana Prodan
On 2/7/2023 11:04 AM, Shengjiu Wang wrote: The version information is at the bit31 ~ bit16 in the VERID register, so need to right shift 16bit to get it, otherwise the result of comparison "sai->verid.version >= 0x0301" is wrong. Fixes: 99c1e74f25d4 ("ASoC: fsl_sai: store full version instead of

Re: [PATCH] ASoC: fsl_sai: fix getting version from VERID

2023-02-07 Thread Fabio Estevam
On Tue, Feb 7, 2023 at 6:30 AM Shengjiu Wang wrote: > > The version information is at the bit31 ~ bit16 in the VERID > register, so need to right shift 16bit to get it, otherwise > the result of comparison "sai->verid.version >= 0x0301" is > wrong. > > Fixes: 99c1e74f25d4 ("ASoC: fsl_sai: store fu

[PATCH] ASoC: fsl_sai: fix getting version from VERID

2023-02-07 Thread Shengjiu Wang
The version information is at the bit31 ~ bit16 in the VERID register, so need to right shift 16bit to get it, otherwise the result of comparison "sai->verid.version >= 0x0301" is wrong. Fixes: 99c1e74f25d4 ("ASoC: fsl_sai: store full version instead of major/minor") Signed-off-by: Shengjiu Wang