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/pcmcia | |
parent | daaa5f7cbee37dfc8464d350f1eacd6e94b278cc (diff) | |
download | kernel_goldelico_gta04-65a772172b06e6e9b43e5ad77dccbcc767ff9831.zip kernel_goldelico_gta04-65a772172b06e6e9b43e5ad77dccbcc767ff9831.tar.gz kernel_goldelico_gta04-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/pcmcia')
-rw-r--r-- | sound/pcmcia/pdaudiocf/pdaudiocf.c | 2 | ||||
-rw-r--r-- | sound/pcmcia/vx/vxpocket.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf.c b/sound/pcmcia/pdaudiocf/pdaudiocf.c index 66488a7..6af41d2 100644 --- a/sound/pcmcia/pdaudiocf/pdaudiocf.c +++ b/sound/pcmcia/pdaudiocf/pdaudiocf.c @@ -20,7 +20,7 @@ #include <sound/core.h> #include <linux/slab.h> -#include <linux/moduleparam.h> +#include <linux/module.h> #include <pcmcia/ciscode.h> #include <pcmcia/cisreg.h> #include "pdaudiocf.h" diff --git a/sound/pcmcia/vx/vxpocket.c b/sound/pcmcia/vx/vxpocket.c index 31777d1..9e361c9 100644 --- a/sound/pcmcia/vx/vxpocket.c +++ b/sound/pcmcia/vx/vxpocket.c @@ -20,7 +20,7 @@ #include <linux/init.h> -#include <linux/moduleparam.h> +#include <linux/module.h> #include <linux/slab.h> #include <sound/core.h> #include "vxpocket.h" |