aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/emu10k1/voice.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2006-04-28 09:13:39 -0400
committerJaroslav Kysela <perex@suse.cz>2006-06-22 15:32:58 -0400
commit2dd31deeeb238a4f40c9fc9e219dc210fcbf8765 (patch)
tree19156b05b4e8a6624a1d9a87cc2236db435b90b4 /sound/pci/emu10k1/voice.c
parent4181e5fe4b27b0a049402a359a4a5d8b80308528 (diff)
[ALSA] emu10k1 - Move EXPORT_SYMBOL() to adjacent to each function
Move EXPORT_SYMBOL() to adjacent to each exported function/variable. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/emu10k1/voice.c')
-rw-r--r--sound/pci/emu10k1/voice.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/pci/emu10k1/voice.c b/sound/pci/emu10k1/voice.c
index 56ffb7dc3ee2..94eca82dd4fc 100644
--- a/sound/pci/emu10k1/voice.c
+++ b/sound/pci/emu10k1/voice.c
@@ -139,6 +139,8 @@ int snd_emu10k1_voice_alloc(struct snd_emu10k1 *emu, int type, int number,
139 return result; 139 return result;
140} 140}
141 141
142EXPORT_SYMBOL(snd_emu10k1_voice_alloc);
143
142int snd_emu10k1_voice_free(struct snd_emu10k1 *emu, 144int snd_emu10k1_voice_free(struct snd_emu10k1 *emu,
143 struct snd_emu10k1_voice *pvoice) 145 struct snd_emu10k1_voice *pvoice)
144{ 146{
@@ -153,3 +155,5 @@ int snd_emu10k1_voice_free(struct snd_emu10k1 *emu,
153 spin_unlock_irqrestore(&emu->voice_lock, flags); 155 spin_unlock_irqrestore(&emu->voice_lock, flags);
154 return 0; 156 return 0;
155} 157}
158
159EXPORT_SYMBOL(snd_emu10k1_voice_free);