diff options
Diffstat (limited to 'sound/core/misc.c')
-rw-r--r-- | sound/core/misc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sound/core/misc.c b/sound/core/misc.c index 11a7675b719b..3eddfdede9f3 100644 --- a/sound/core/misc.c +++ b/sound/core/misc.c | |||
@@ -23,8 +23,17 @@ | |||
23 | #include <linux/init.h> | 23 | #include <linux/init.h> |
24 | #include <linux/sched.h> | 24 | #include <linux/sched.h> |
25 | #include <linux/time.h> | 25 | #include <linux/time.h> |
26 | #include <linux/ioport.h> | ||
26 | #include <sound/core.h> | 27 | #include <sound/core.h> |
27 | 28 | ||
29 | void release_and_free_resource(struct resource *res) | ||
30 | { | ||
31 | if (res) { | ||
32 | release_resource(res); | ||
33 | kfree_nocheck(res); | ||
34 | } | ||
35 | } | ||
36 | |||
28 | #ifdef CONFIG_SND_VERBOSE_PRINTK | 37 | #ifdef CONFIG_SND_VERBOSE_PRINTK |
29 | void snd_verbose_printk(const char *file, int line, const char *format, ...) | 38 | void snd_verbose_printk(const char *file, int line, const char *format, ...) |
30 | { | 39 | { |