diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-15 13:13:37 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:19 -0400 |
commit | 65a772172b06e6e9b43e5ad77dccbcc767ff9831 (patch) | |
tree | 55f7356cd1b048de9c8496c3e53f9bd7128f5c46 /sound/drivers/mpu401 | |
parent | daaa5f7cbee37dfc8464d350f1eacd6e94b278cc (diff) | |
download | linux-65a772172b06e6e9b43e5ad77dccbcc767ff9831.tar.bz2 |
sound: fix drivers needing module.h not moduleparam.h
The implicit presence of module.h lured several users into
incorrectly thinking that they only needed/used modparam.h
but once we clean up the module.h presence, these will show
up as build failures, so fix 'em now.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'sound/drivers/mpu401')
-rw-r--r-- | sound/drivers/mpu401/mpu401.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/drivers/mpu401/mpu401.c b/sound/drivers/mpu401/mpu401.c index 1c02852aceea..257569014f23 100644 --- a/sound/drivers/mpu401/mpu401.c +++ b/sound/drivers/mpu401/mpu401.c @@ -24,7 +24,7 @@ #include <linux/pnp.h> #include <linux/err.h> #include <linux/platform_device.h> -#include <linux/moduleparam.h> +#include <linux/module.h> #include <sound/core.h> #include <sound/mpu401.h> #include <sound/initval.h> |