diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-08-31 17:02:47 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:20 -0400 |
commit | 31623caaf0f84f17d632f16c1cdf42e7e21e807a (patch) | |
tree | 1233a9795c060632cc8c752911922334043f721b /sound/core/misc.c | |
parent | 65a772172b06e6e9b43e5ad77dccbcc767ff9831 (diff) | |
download | linux-3.10-31623caaf0f84f17d632f16c1cdf42e7e21e807a.tar.gz linux-3.10-31623caaf0f84f17d632f16c1cdf42e7e21e807a.tar.bz2 linux-3.10-31623caaf0f84f17d632f16c1cdf42e7e21e807a.zip |
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>
Diffstat (limited to 'sound/core/misc.c')
-rw-r--r-- | sound/core/misc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/core/misc.c b/sound/core/misc.c index eb9fe2e1d29..9aad55b9f1f 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> |