diff options
author | Jiri Prchal <jiri.prchal@aksignal.cz> | 2021-04-06 16:24:37 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-04-07 16:58:25 +0100 |
commit | b015df6ac03ee81b259dcb2f1a6faf4cf04ace5a (patch) | |
tree | 5a9727293ff45e506c72cdc84bf3a390369dfac3 /sound/soc/codecs/tlv320aic3x.c | |
parent | 73a4808892b83c8336c3d913d44b8de68d881369 (diff) | |
download | linux-next-b015df6ac03ee81b259dcb2f1a6faf4cf04ace5a.tar.gz |
ASoC: codecs: tlv320aic3x: rename probe function
Renamed function to have it free for generic probe.
Signed-off-by: Jiri Prchal <jiri.prchal@aksignal.cz>
Link: https://lore.kernel.org/r/20210406142439.102396-3-jiri.prchal@aksignal.cz
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/tlv320aic3x.c')
-rw-r--r-- | sound/soc/codecs/tlv320aic3x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/tlv320aic3x.c b/sound/soc/codecs/tlv320aic3x.c index 812f0f117fd3..6549ad9296ce 100644 --- a/sound/soc/codecs/tlv320aic3x.c +++ b/sound/soc/codecs/tlv320aic3x.c @@ -1610,7 +1610,7 @@ static bool aic3x_is_shared_reset(struct aic3x_priv *aic3x) return false; } -static int aic3x_probe(struct snd_soc_component *component) +static int aic3x_component_probe(struct snd_soc_component *component) { struct aic3x_priv *aic3x = snd_soc_component_get_drvdata(component); int ret, i; @@ -1689,7 +1689,7 @@ static int aic3x_probe(struct snd_soc_component *component) static const struct snd_soc_component_driver soc_component_dev_aic3x = { .set_bias_level = aic3x_set_bias_level, - .probe = aic3x_probe, + .probe = aic3x_component_probe, .controls = aic3x_snd_controls, .num_controls = ARRAY_SIZE(aic3x_snd_controls), .dapm_widgets = aic3x_dapm_widgets, |