Unverified Commit b075f21e authored by ye xingchen's avatar ye xingchen Committed by Mark Brown
Browse files

ASoC: sti-sas: Remove the unneeded result variable



Return the value regmap_write() and sti_sas_init_sas_registers() directly
instead of storing it in another redundant variable.

Reported-by: default avatarZeal Robot <zealci@zte.com.cn>
Signed-off-by: default avatarye xingchen <ye.xingchen@zte.com.cn>
Link: https://lore.kernel.org/r/20220908010304.342760-1-ye.xingchen@zte.com.cn


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6ac24610
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -96,11 +96,8 @@ static int sti_sas_write_reg(void *context, unsigned int reg,
			     unsigned int value)
{
	struct sti_sas_data *drvdata = context;
	int status;

	status = regmap_write(drvdata->dac.regmap, reg, value);

	return status;
	return regmap_write(drvdata->dac.regmap, reg, value);
}

static int  sti_sas_init_sas_registers(struct snd_soc_component *component,
@@ -385,11 +382,8 @@ static int sti_sas_resume(struct snd_soc_component *component)
static int sti_sas_component_probe(struct snd_soc_component *component)
{
	struct sti_sas_data *drvdata = dev_get_drvdata(component->dev);
	int ret;

	ret = sti_sas_init_sas_registers(component, drvdata);

	return ret;
	return sti_sas_init_sas_registers(component, drvdata);
}

static struct snd_soc_component_driver sti_sas_driver = {