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

Commit 23417bf1 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

ANDROID: SoC: core: fix export symbol type



In commit 4233dfd7c097 ("ANDROID: SoC: core: Introduce macro
SOC_SINGLE_MULTI_EXT") a new symbol was exported, but it should have
been set as a _GPL symbol.

Fix this up by properly changing the export type.

Bug: 144610828
Cc: Banajit Goswami <bgoswami@codeaurora.org>
Cc: Sudheer Papothi <spapothi@codeaurora.org>
Cc: Meng Wang <mwang@codeaurora.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
Change-Id: I373a8d347a07e3ea44af4e8c683a71c7821b6cc5
parent a1b31aed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3732,7 +3732,7 @@ int snd_soc_info_multi_ext(struct snd_kcontrol *kcontrol,
	uinfo->value.integer.max = platform_max;
	return 0;
}
EXPORT_SYMBOL(snd_soc_info_multi_ext);
EXPORT_SYMBOL_GPL(snd_soc_info_multi_ext);

int snd_soc_get_dai_name(struct of_phandle_args *args,
				const char **dai_name)