aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/hwdep.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2014-02-27 10:00:17 -0500
committerTakashi Iwai <tiwai@suse.de>2014-02-27 10:00:51 -0500
commit6776a5d712a1e670e9cf31c6693480d4d9b30e33 (patch)
treebeff817c5ea6a29a7c41db87eca8a95c7cefbd96 /sound/core/hwdep.c
parentf2606a807935fab0d5a2806673dcc4ce4f1f40e4 (diff)
ALSA: Move EXPORT_SYMBOL() in appropriate places
Just a cleanup to follow the standard coding style. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/hwdep.c')
-rw-r--r--sound/core/hwdep.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/core/hwdep.c b/sound/core/hwdep.c
index d6eb3ef3e3c7..69459e5f712e 100644
--- a/sound/core/hwdep.c
+++ b/sound/core/hwdep.c
@@ -395,6 +395,7 @@ int snd_hwdep_new(struct snd_card *card, char *id, int device,
395 *rhwdep = hwdep; 395 *rhwdep = hwdep;
396 return 0; 396 return 0;
397} 397}
398EXPORT_SYMBOL(snd_hwdep_new);
398 399
399static int snd_hwdep_free(struct snd_hwdep *hwdep) 400static int snd_hwdep_free(struct snd_hwdep *hwdep)
400{ 401{
@@ -567,5 +568,3 @@ static void __exit alsa_hwdep_exit(void)
567 568
568module_init(alsa_hwdep_init) 569module_init(alsa_hwdep_init)
569module_exit(alsa_hwdep_exit) 570module_exit(alsa_hwdep_exit)
570
571EXPORT_SYMBOL(snd_hwdep_new);