From: Cássio Gabriel Date: Tue, 7 Apr 2026 15:35:41 +0000 (-0300) Subject: ALSA: tea6330t: move snd_tea6330t_detect() EXPORT_SYMBOL X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=22cb174c0af85e83d02a7b44fcc20c77008ee885;p=thirdparty%2Fkernel%2Flinux.git ALSA: tea6330t: move snd_tea6330t_detect() EXPORT_SYMBOL Move the remaining standalone snd_tea6330t_detect() EXPORT_SYMBOL() declaration next to its function definition so tea6330t.c follows the usual layout. No functional change intended. Signed-off-by: Cássio Gabriel Signed-off-by: Takashi Iwai Link: https://patch.msgid.link/20260407-alsa-interwave-pm-v2-1-8dd96c6129e9@gmail.com --- diff --git a/sound/i2c/tea6330t.c b/sound/i2c/tea6330t.c index e8c50a036bea7..5341907b85d19 100644 --- a/sound/i2c/tea6330t.c +++ b/sound/i2c/tea6330t.c @@ -51,6 +51,7 @@ int snd_tea6330t_detect(struct snd_i2c_bus *bus, int equalizer) snd_i2c_unlock(bus); return res; } +EXPORT_SYMBOL(snd_tea6330t_detect); #if 0 static void snd_tea6330t_set(struct tea6330t *tea, @@ -356,5 +357,4 @@ int snd_tea6330t_update_mixer(struct snd_card *card, return err; } -EXPORT_SYMBOL(snd_tea6330t_detect); EXPORT_SYMBOL(snd_tea6330t_update_mixer);