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

Commit 1cdd90cd authored by Vignesh Kulothungan's avatar Vignesh Kulothungan
Browse files

Revert "SoC: soc-core: export function to find components"



This reverts commit b3f1c1d8.

Change-Id: I987273692d62416218befd8942d1fdb09e207304
Signed-off-by: default avatarVignesh Kulothungan <vigneshk@codeaurora.org>
parent 17c22334
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -1388,11 +1388,6 @@ int snd_soc_register_dai(struct snd_soc_component *component,
struct snd_soc_dai *snd_soc_find_dai(
	const struct snd_soc_dai_link_component *dlc);

#ifdef CONFIG_AUDIO_QGKI
struct snd_soc_component *soc_find_component(
	const struct snd_soc_dai_link_component *dlc);
#endif

#include <sound/soc-dai.h>

static inline
+0 −34
Original line number Diff line number Diff line
@@ -763,39 +763,6 @@ static int snd_soc_is_matching_component(
	return 1;
}

#ifdef CONFIG_AUDIO_QGKI
/**
 * soc_find_component: find a component from component_list in ASoC core
 *
 * @dlc: dlc of the component to query.
 *
 * function to find out if a component is already registered with ASoC core.
 *
 * Returns component handle for success, else NULL error.
 */
struct snd_soc_component *soc_find_component(
	const struct snd_soc_dai_link_component *dlc)
{
	struct snd_soc_component *component;

	lockdep_assert_held(&client_mutex);

	/*
	 * NOTE
	 *
	 * It returns *1st* found component, but some driver
	 * has few components by same of_node/name
	 * ex)
	 *	CPU component and generic DMAEngine component
	 */
	for_each_component(component)
		if (snd_soc_is_matching_component(dlc, component))
			return component;

	return NULL;
}
EXPORT_SYMBOL(soc_find_component);
#else
static struct snd_soc_component *soc_find_component(
	const struct snd_soc_dai_link_component *dlc)
{
@@ -817,7 +784,6 @@ static struct snd_soc_component *soc_find_component(

	return NULL;
}
#endif

/**
 * snd_soc_find_dai - Find a registered DAI