summaryrefslogtreecommitdiff
path: root/sound/core/isadma.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2017-06-16 16:16:33 +0200
committerTakashi Iwai <tiwai@suse.de>2017-06-16 16:19:16 +0200
commit35f8001415d301ba47124f463f98eee0e7d0792c (patch)
tree2494c71c0079a77268aadc0ba74ad728f19deee3 /sound/core/isadma.c
parent988563929d5b65c021439880ac6bd1b207722f26 (diff)
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/isadma.c')
-rw-r--r--sound/core/isadma.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/core/isadma.c b/sound/core/isadma.c
index 31e8544d7f2d..7a8515abb5f9 100644
--- a/sound/core/isadma.c
+++ b/sound/core/isadma.c
@@ -55,7 +55,6 @@ void snd_dma_program(unsigned long dma,
enable_dma(dma);
release_dma_lock(flags);
}
-
EXPORT_SYMBOL(snd_dma_program);
/**
@@ -73,7 +72,6 @@ void snd_dma_disable(unsigned long dma)
disable_dma(dma);
release_dma_lock(flags);
}
-
EXPORT_SYMBOL(snd_dma_disable);
/**
@@ -113,5 +111,4 @@ unsigned int snd_dma_pointer(unsigned long dma, unsigned int size)
else
return size - result;
}
-
EXPORT_SYMBOL(snd_dma_pointer);