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

Commit d95e9337 authored by Mark Brown's avatar Mark Brown
Browse files

ASoC: ab8500: Remove pointless cast



There's never any need to cast away from void.

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarLee Jones <lee.jones@linaro.org>
parent 7435d4ee
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2404,12 +2404,12 @@ static int ab8500_codec_probe(struct snd_soc_codec *codec)

	dev_dbg(dev, "%s: Enter.\n", __func__);

	/* Setup AB8500 according to board-settings */
	pdata = (struct ab8500_platform_data *)dev_get_platdata(dev->parent);

	/* Inform SoC Core that we have our own I/O arrangements. */
	codec->control_data = (void *)true;

	/* Setup AB8500 according to board-settings */
	pdata = dev_get_platdata(dev->parent);

	status = ab8500_audio_setup_mics(codec, &pdata->codec->amics);
	if (status < 0) {
		pr_err("%s: Failed to setup mics (%d)!\n", __func__, status);