diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-06-16 16:16:33 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-06-16 16:19:16 +0200 |
commit | 35f8001415d301ba47124f463f98eee0e7d0792c (patch) | |
tree | 2494c71c0079a77268aadc0ba74ad728f19deee3 /sound/core/oss | |
parent | 988563929d5b65c021439880ac6bd1b207722f26 (diff) | |
download | linux-35f8001415d301ba47124f463f98eee0e7d0792c.tar.gz linux-35f8001415d301ba47124f463f98eee0e7d0792c.tar.bz2 linux-35f8001415d301ba47124f463f98eee0e7d0792c.zip |
ALSA: core: Follow standard EXPORT_SYMBOL() declarations
Just a tidy up to follow the standard EXPORT_SYMBOL*() declarations
in order to improve grep-ability.
- Move EXPORT_SYMBOL*() to the position right after its definition
- Remove superfluous blank line before EXPORT_SYMBOL*() lines
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/oss')
-rw-r--r-- | sound/core/oss/mixer_oss.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/core/oss/mixer_oss.c b/sound/core/oss/mixer_oss.c index 2ff9c12d664a..379bf486ccc7 100644 --- a/sound/core/oss/mixer_oss.c +++ b/sound/core/oss/mixer_oss.c @@ -395,6 +395,7 @@ int snd_mixer_oss_ioctl_card(struct snd_card *card, unsigned int cmd, unsigned l fmixer.mixer = card->mixer_oss; return snd_mixer_oss_ioctl1(&fmixer, cmd, arg); } +EXPORT_SYMBOL(snd_mixer_oss_ioctl_card); #ifdef CONFIG_COMPAT /* all compatible */ @@ -1425,5 +1426,3 @@ static void __exit alsa_mixer_oss_exit(void) module_init(alsa_mixer_oss_init) module_exit(alsa_mixer_oss_exit) - -EXPORT_SYMBOL(snd_mixer_oss_ioctl_card); |