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

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

ASoC: Unexport AD193x bus probe/remove functions



The export is not needed since the per-bus code lives in the same
module.

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
parent a1533d94
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -285,7 +285,7 @@ static int ad193x_hw_params(struct snd_pcm_substream *substream,
	return 0;
	return 0;
}
}


int ad193x_bus_probe(struct device *dev, void *ctrl_data, int bus_type)
static int ad193x_bus_probe(struct device *dev, void *ctrl_data, int bus_type)
{
{
	struct snd_soc_codec *codec;
	struct snd_soc_codec *codec;
	struct ad193x_priv *ad193x;
	struct ad193x_priv *ad193x;
@@ -302,16 +302,14 @@ int ad193x_bus_probe(struct device *dev, void *ctrl_data, int bus_type)


	return ad193x_register(ad193x, bus_type);
	return ad193x_register(ad193x, bus_type);
}
}
EXPORT_SYMBOL_GPL(ad193x_bus_probe);


int ad193x_bus_remove(struct device *dev)
static int ad193x_bus_remove(struct device *dev)
{
{
	struct ad193x_priv *ad193x = dev_get_drvdata(dev);
	struct ad193x_priv *ad193x = dev_get_drvdata(dev);


	ad193x_unregister(ad193x);
	ad193x_unregister(ad193x);
	return 0;
	return 0;
}
}
EXPORT_SYMBOL_GPL(ad193x_bus_remove);


static struct snd_soc_dai_ops ad193x_dai_ops = {
static struct snd_soc_dai_ops ad193x_dai_ops = {
	.hw_params = ad193x_hw_params,
	.hw_params = ad193x_hw_params,
+0 −2
Original line number Original line Diff line number Diff line
@@ -77,7 +77,5 @@


extern struct snd_soc_dai ad193x_dai;
extern struct snd_soc_dai ad193x_dai;
extern struct snd_soc_codec_device soc_codec_dev_ad193x;
extern struct snd_soc_codec_device soc_codec_dev_ad193x;
extern int ad193x_bus_probe(struct device *dev, void *ctrl_data, int bus_type);
extern int ad193x_bus_remove(struct device *dev);


#endif
#endif