aboutsummaryrefslogtreecommitdiffstats
path: root/sound/synth
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-07-15 12:38:28 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-10-31 19:31:21 -0400
commitda155d5b40587815a4397e1a69382fe2366d940b (patch)
tree5597f2e4649e7b1c611211b29906950c08e3e25c /sound/synth
parent31623caaf0f84f17d632f16c1cdf42e7e21e807a (diff)
sound: Add module.h to the previously silent sound users
Lots of sound drivers were getting module.h via the implicit presence of it in <linux/device.h> but we are going to clean that up. So fix up those users now. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'sound/synth')
-rw-r--r--sound/synth/emux/emux.c1
-rw-r--r--sound/synth/emux/emux_seq.c2
-rw-r--r--sound/synth/util_mem.c1
3 files changed, 3 insertions, 1 deletions
diff --git a/sound/synth/emux/emux.c b/sound/synth/emux/emux.c
index f16a3fce4597..93522072bc87 100644
--- a/sound/synth/emux/emux.c
+++ b/sound/synth/emux/emux.c
@@ -24,6 +24,7 @@
24#include <sound/core.h> 24#include <sound/core.h>
25#include <sound/emux_synth.h> 25#include <sound/emux_synth.h>
26#include <linux/init.h> 26#include <linux/init.h>
27#include <linux/module.h>
27#include "emux_voice.h" 28#include "emux_voice.h"
28 29
29MODULE_AUTHOR("Takashi Iwai"); 30MODULE_AUTHOR("Takashi Iwai");
diff --git a/sound/synth/emux/emux_seq.c b/sound/synth/emux/emux_seq.c
index ca5f7effb4df..7778b8e19782 100644
--- a/sound/synth/emux/emux_seq.c
+++ b/sound/synth/emux/emux_seq.c
@@ -21,7 +21,7 @@
21 21
22#include "emux_voice.h" 22#include "emux_voice.h"
23#include <linux/slab.h> 23#include <linux/slab.h>
24 24#include <linux/module.h>
25 25
26/* Prototypes for static functions */ 26/* Prototypes for static functions */
27static void free_port(void *private); 27static void free_port(void *private);
diff --git a/sound/synth/util_mem.c b/sound/synth/util_mem.c
index c85522e3808d..8e34bc4e07ec 100644
--- a/sound/synth/util_mem.c
+++ b/sound/synth/util_mem.c
@@ -21,6 +21,7 @@
21#include <linux/mutex.h> 21#include <linux/mutex.h>
22#include <linux/init.h> 22#include <linux/init.h>
23#include <linux/slab.h> 23#include <linux/slab.h>
24#include <linux/module.h>
24#include <sound/core.h> 25#include <sound/core.h>
25#include <sound/util_mem.h> 26#include <sound/util_mem.h>
26 27