diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-06-16 17:16:33 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-06-16 17:19:16 +0300 |
commit | 35f8001415d301ba47124f463f98eee0e7d0792c (patch) | |
tree | 2494c71c0079a77268aadc0ba74ad728f19deee3 /sound/core/memory.c | |
parent | 988563929d5b65c021439880ac6bd1b207722f26 (diff) | |
download | linux-35f8001415d301ba47124f463f98eee0e7d0792c.tar.xz |
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/memory.c')
-rw-r--r-- | sound/core/memory.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/core/memory.c b/sound/core/memory.c index 4cd664efad77..19c9ea90d9bf 100644 --- a/sound/core/memory.c +++ b/sound/core/memory.c @@ -55,7 +55,6 @@ int copy_to_user_fromio(void __user *dst, const volatile void __iomem *src, size return 0; #endif } - EXPORT_SYMBOL(copy_to_user_fromio); /** @@ -88,5 +87,4 @@ int copy_from_user_toio(volatile void __iomem *dst, const void __user *src, size return 0; #endif } - EXPORT_SYMBOL(copy_from_user_toio); |