ALSA: hda: cs35l41: Fix endian conversions
Found during static analysis, ensure variables are correct types before endian conversion. Signed-off-by: Stefan Binding <sbinding@opensource.cirrus.com> Link: https://lore.kernel.org/r/20230606103436.455348-3-sbinding@opensource.cirrus.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
448425f05b
commit
31dbb503f0
@ -308,8 +308,8 @@ out:
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if IS_ENABLED(CONFIG_EFI)
|
#if IS_ENABLED(CONFIG_EFI)
|
||||||
static int cs35l41_apply_calibration(struct cs35l41_hda *cs35l41, unsigned int ambient,
|
static int cs35l41_apply_calibration(struct cs35l41_hda *cs35l41, __be32 ambient, __be32 r0,
|
||||||
unsigned int r0, unsigned int status, unsigned int checksum)
|
__be32 status, __be32 checksum)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
@ -745,7 +745,7 @@ err:
|
|||||||
|
|
||||||
static int cs35l41_smart_amp(struct cs35l41_hda *cs35l41)
|
static int cs35l41_smart_amp(struct cs35l41_hda *cs35l41)
|
||||||
{
|
{
|
||||||
int halo_sts;
|
__be32 halo_sts;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = cs35l41_init_dsp(cs35l41);
|
ret = cs35l41_init_dsp(cs35l41);
|
||||||
@ -773,7 +773,7 @@ static int cs35l41_smart_amp(struct cs35l41_hda *cs35l41)
|
|||||||
&halo_sts, sizeof(halo_sts));
|
&halo_sts, sizeof(halo_sts));
|
||||||
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(cs35l41->dev, "Timeout waiting for HALO Core to start. State: %d\n",
|
dev_err(cs35l41->dev, "Timeout waiting for HALO Core to start. State: %u\n",
|
||||||
halo_sts);
|
halo_sts);
|
||||||
goto clean_dsp;
|
goto clean_dsp;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user