aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/seq
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/core/seq
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/core/seq')
-rw-r--r--sound/core/seq/oss/seq_oss_synth.c1
-rw-r--r--sound/core/seq/seq_device.c1
-rw-r--r--sound/core/seq/seq_midi_emul.c1
-rw-r--r--sound/core/seq/seq_midi_event.c1
-rw-r--r--sound/core/seq/seq_ports.c1
-rw-r--r--sound/core/seq/seq_virmidi.c1
6 files changed, 6 insertions, 0 deletions
diff --git a/sound/core/seq/oss/seq_oss_synth.c b/sound/core/seq/oss/seq_oss_synth.c
index ee44ab9593c0..c5b773a1eea9 100644
--- a/sound/core/seq/oss/seq_oss_synth.c
+++ b/sound/core/seq/oss/seq_oss_synth.c
@@ -24,6 +24,7 @@
24#include "seq_oss_midi.h" 24#include "seq_oss_midi.h"
25#include "../seq_lock.h" 25#include "../seq_lock.h"
26#include <linux/init.h> 26#include <linux/init.h>
27#include <linux/module.h>
27#include <linux/slab.h> 28#include <linux/slab.h>
28 29
29/* 30/*
diff --git a/sound/core/seq/seq_device.c b/sound/core/seq/seq_device.c
index 1f997675c893..5cf8d65ed5ef 100644
--- a/sound/core/seq/seq_device.c
+++ b/sound/core/seq/seq_device.c
@@ -37,6 +37,7 @@
37 */ 37 */
38 38
39#include <linux/init.h> 39#include <linux/init.h>
40#include <linux/module.h>
40#include <sound/core.h> 41#include <sound/core.h>
41#include <sound/info.h> 42#include <sound/info.h>
42#include <sound/seq_device.h> 43#include <sound/seq_device.h>
diff --git a/sound/core/seq/seq_midi_emul.c b/sound/core/seq/seq_midi_emul.c
index 07c663135c62..6f64471ddde3 100644
--- a/sound/core/seq/seq_midi_emul.c
+++ b/sound/core/seq/seq_midi_emul.c
@@ -32,6 +32,7 @@
32#include <linux/init.h> 32#include <linux/init.h>
33#include <linux/slab.h> 33#include <linux/slab.h>
34#include <linux/string.h> 34#include <linux/string.h>
35#include <linux/module.h>
35#include <sound/core.h> 36#include <sound/core.h>
36#include <sound/seq_kernel.h> 37#include <sound/seq_kernel.h>
37#include <sound/seq_midi_emul.h> 38#include <sound/seq_midi_emul.h>
diff --git a/sound/core/seq/seq_midi_event.c b/sound/core/seq/seq_midi_event.c
index b5d6ea4904c0..37db7ba492a6 100644
--- a/sound/core/seq/seq_midi_event.c
+++ b/sound/core/seq/seq_midi_event.c
@@ -22,6 +22,7 @@
22#include <linux/slab.h> 22#include <linux/slab.h>
23#include <linux/errno.h> 23#include <linux/errno.h>
24#include <linux/string.h> 24#include <linux/string.h>
25#include <linux/module.h>
25#include <sound/core.h> 26#include <sound/core.h>
26#include <sound/seq_kernel.h> 27#include <sound/seq_kernel.h>
27#include <sound/seq_midi_event.h> 28#include <sound/seq_midi_event.h>
diff --git a/sound/core/seq/seq_ports.c b/sound/core/seq/seq_ports.c
index e12bcd94b6db..9516e5ce3aad 100644
--- a/sound/core/seq/seq_ports.c
+++ b/sound/core/seq/seq_ports.c
@@ -22,6 +22,7 @@
22 22
23#include <sound/core.h> 23#include <sound/core.h>
24#include <linux/slab.h> 24#include <linux/slab.h>
25#include <linux/module.h>
25#include "seq_system.h" 26#include "seq_system.h"
26#include "seq_ports.h" 27#include "seq_ports.h"
27#include "seq_clientmgr.h" 28#include "seq_clientmgr.h"
diff --git a/sound/core/seq/seq_virmidi.c b/sound/core/seq/seq_virmidi.c
index 86e7739269ca..4b50e604276d 100644
--- a/sound/core/seq/seq_virmidi.c
+++ b/sound/core/seq/seq_virmidi.c
@@ -37,6 +37,7 @@
37 37
38#include <linux/init.h> 38#include <linux/init.h>
39#include <linux/wait.h> 39#include <linux/wait.h>
40#include <linux/module.h>
40#include <linux/slab.h> 41#include <linux/slab.h>
41#include <sound/core.h> 42#include <sound/core.h>
42#include <sound/rawmidi.h> 43#include <sound/rawmidi.h>