summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-08-31 21:02:47 (GMT)
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-10-31 23:31:20 (GMT)
commit31623caaf0f84f17d632f16c1cdf42e7e21e807a (patch)
tree1233a9795c060632cc8c752911922334043f721b
parent65a772172b06e6e9b43e5ad77dccbcc767ff9831 (diff)
downloadlinux-fsl-qoriq-31623caaf0f84f17d632f16c1cdf42e7e21e807a.tar.xz
sound: add moduleparam.h to users of module_param/MODULE_PARM_DESC
These files were getting access to these two via the implicit presence of moduleparam.h everywhere. But that is being fixed, so get these guys what they need in advance. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r--sound/core/misc.c1
-rw-r--r--sound/isa/sb/emu8000_patch.c1
-rw-r--r--sound/usb/usx2y/usbusx2yaudio.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/sound/core/misc.c b/sound/core/misc.c
index eb9fe2e..9aad55b 100644
--- a/sound/core/misc.c
+++ b/sound/core/misc.c
@@ -20,6 +20,7 @@
*/
#include <linux/init.h>
+#include <linux/moduleparam.h>
#include <linux/time.h>
#include <linux/slab.h>
#include <linux/ioport.h>
diff --git a/sound/isa/sb/emu8000_patch.c b/sound/isa/sb/emu8000_patch.c
index c99c607..e09f144 100644
--- a/sound/isa/sb/emu8000_patch.c
+++ b/sound/isa/sb/emu8000_patch.c
@@ -22,6 +22,7 @@
#include "emu8000_local.h"
#include <asm/uaccess.h>
#include <linux/moduleparam.h>
+#include <linux/moduleparam.h>
static int emu8000_reset_addr;
module_param(emu8000_reset_addr, int, 0444);
diff --git a/sound/usb/usx2y/usbusx2yaudio.c b/sound/usb/usx2y/usbusx2yaudio.c
index 5d37d1c..6ffb371 100644
--- a/sound/usb/usx2y/usbusx2yaudio.c
+++ b/sound/usb/usx2y/usbusx2yaudio.c
@@ -34,6 +34,7 @@
#include <linux/interrupt.h>
#include <linux/slab.h>
#include <linux/usb.h>
+#include <linux/moduleparam.h>
#include <sound/core.h>
#include <sound/info.h>
#include <sound/pcm.h>