Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c31b4b4 authored by Viorel Suman's avatar Viorel Suman Committed by Greg Kroah-Hartman
Browse files

ASoC: ak4458: add return value for ak4458_probe



[ Upstream commit a8dee20d792432740509237943700fbcfc230bad ]

AK4458 is probed successfully even if AK4458 is not present - this
is caused by probe function returning no error on i2c access failure.
Return an error on probe if i2c access has failed.

Signed-off-by: default avatarShengjiu Wang <shengjiu.wang@nxp.com>
Signed-off-by: default avatarViorel Suman <viorel.suman@nxp.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 0c19bcdb
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -492,9 +492,10 @@ static void ak4458_power_on(struct ak4458_priv *ak4458)
	}
}

static void ak4458_init(struct snd_soc_component *component)
static int ak4458_init(struct snd_soc_component *component)
{
	struct ak4458_priv *ak4458 = snd_soc_component_get_drvdata(component);
	int ret;

	/* External Mute ON */
	if (ak4458->mute_gpiod)
@@ -502,21 +503,21 @@ static void ak4458_init(struct snd_soc_component *component)

	ak4458_power_on(ak4458);

	snd_soc_component_update_bits(component, AK4458_00_CONTROL1,
	ret = snd_soc_component_update_bits(component, AK4458_00_CONTROL1,
			    0x80, 0x80);   /* ACKS bit = 1; 10000000 */
	if (ret < 0)
		return ret;

	ak4458_rstn_control(component, 1);
	return ak4458_rstn_control(component, 1);
}

static int ak4458_probe(struct snd_soc_component *component)
{
	struct ak4458_priv *ak4458 = snd_soc_component_get_drvdata(component);

	ak4458_init(component);

	ak4458->fs = 48000;

	return 0;
	return ak4458_init(component);
}

static void ak4458_remove(struct snd_soc_component *component)