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

Commit 36300fd0 authored by Alexandru Gheorghiu's avatar Alexandru Gheorghiu Committed by Mark Brown
Browse files

ASoC: core: Use PTR_RET function



Used PTR_RET function instead of IS_ERR and PTR_ERR.
Patch found using coccinelle.

Signed-off-by: default avatarAlexandru Gheorghiu <gheorghiuandru@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent e1328a83
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -158,10 +158,7 @@ int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
		return -EINVAL;
		return -EINVAL;
	}
	}


	if (IS_ERR(codec->control_data))
	return PTR_RET(codec->control_data);
		return PTR_ERR(codec->control_data);

	return 0;
}
}
EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io);
EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io);
#else
#else