소스 검색

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>
Paul Gortmaker 13 년 전
부모
커밋
31623caaf0
3개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      sound/core/misc.c
  2. 1 0
      sound/isa/sb/emu8000_patch.c
  3. 1 0
      sound/usb/usx2y/usbusx2yaudio.c

+ 1 - 0
sound/core/misc.c

@@ -20,6 +20,7 @@
  */
  */
 
 
 #include <linux/init.h>
 #include <linux/init.h>
+#include <linux/moduleparam.h>
 #include <linux/time.h>
 #include <linux/time.h>
 #include <linux/slab.h>
 #include <linux/slab.h>
 #include <linux/ioport.h>
 #include <linux/ioport.h>

+ 1 - 0
sound/isa/sb/emu8000_patch.c

@@ -22,6 +22,7 @@
 #include "emu8000_local.h"
 #include "emu8000_local.h"
 #include <asm/uaccess.h>
 #include <asm/uaccess.h>
 #include <linux/moduleparam.h>
 #include <linux/moduleparam.h>
+#include <linux/moduleparam.h>
 
 
 static int emu8000_reset_addr;
 static int emu8000_reset_addr;
 module_param(emu8000_reset_addr, int, 0444);
 module_param(emu8000_reset_addr, int, 0444);

+ 1 - 0
sound/usb/usx2y/usbusx2yaudio.c

@@ -34,6 +34,7 @@
 #include <linux/interrupt.h>
 #include <linux/interrupt.h>
 #include <linux/slab.h>
 #include <linux/slab.h>
 #include <linux/usb.h>
 #include <linux/usb.h>
+#include <linux/moduleparam.h>
 #include <sound/core.h>
 #include <sound/core.h>
 #include <sound/info.h>
 #include <sound/info.h>
 #include <sound/pcm.h>
 #include <sound/pcm.h>