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

Commit 044ca6fe authored by LuK1337's avatar LuK1337 Committed by KakatkarAkshay
Browse files

techpack: audio-extend: Use EXPORT_SYMBOL_GPL()

Commit 7ac68b2a ("modules: only allow symbol_get of
EXPORT_SYMBOL_GPL modules") made it so symbol_request() can only be used
with GPL symbols, thus we ought to use EXPORT_SYMBOL_GPL() here.

Change-Id: Ia1d1bc79c1fa0a8dd6f432d4b05a1e398268f858
parent 74d86f47
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -277,7 +277,7 @@ void extend_codec_i2s_be_dailinks(struct snd_soc_dai_link *dailink, size_t size)
		extend_codec_be_dailink(g_extend_pdata->hp_dac_info, dailink, size);
	}
}
EXPORT_SYMBOL(extend_codec_i2s_be_dailinks);
EXPORT_SYMBOL_GPL(extend_codec_i2s_be_dailinks);

static int audio_extend_probe(struct platform_device *pdev)
{