aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-01-07 22:21:13 -0800
committerLinus Torvalds <torvalds@evo.osdl.org>2005-01-07 22:21:13 -0800
commita8499f6dd16dac3787c4984d08fc7dc9288f0aee (patch)
tree4d027b69836aab1c03a04c8a98c118f259186ba7 /sound
parent287e35add07bf8557eab57a0bbb9fb5d2f5a496c (diff)
downloadhistory-a8499f6dd16dac3787c4984d08fc7dc9288f0aee.tar.gz
[PATCH] MODULE_PARM conversions
Rusty Russell <rusty@rustcorp.com.au> MODULE_PARM conversions for x86 `allmodconfig'. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/oss/ymfpci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/ymfpci.c b/sound/oss/ymfpci.c
index f552f304ae7888..2b5314a67929c0 100644
--- a/sound/oss/ymfpci.c
+++ b/sound/oss/ymfpci.c
@@ -2504,8 +2504,8 @@ static int ymf_ac97_init(ymfpci_t *unit, int num_ac97)
# ifdef MODULE
static int mpu_io;
static int synth_io;
-MODULE_PARM(mpu_io, "i");
-MODULE_PARM(synth_io, "i");
+module_param(mpu_io, int, 0);
+module_param(synth_io, int, 0);
# else
static int mpu_io = 0x330;
static int synth_io = 0x388;