aboutsummaryrefslogtreecommitdiffstats
path: root/sound/oss/pas2_card.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-12-14 22:19:36 -0500
committerTakashi Iwai <tiwai@suse.de>2011-12-19 04:34:41 -0500
commita67ff6a54095e27093ea501fb143fefe51a536c2 (patch)
tree48cb687a7569a8b6d4051bc9051f565b43803982 /sound/oss/pas2_card.c
parent1bba160a0777046967707bbcdc9fb09d334ab2e5 (diff)
ALSA: module_param: make bool parameters really bool
module_param(bool) used to counter-intuitively take an int. In fddd5201 (mid-2009) we allowed bool or int/unsigned int using a messy trick. It's time to remove the int/unsigned int option. For this version it'll simply give a warning, but it'll break next kernel version. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/oss/pas2_card.c')
-rw-r--r--sound/oss/pas2_card.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/oss/pas2_card.c b/sound/oss/pas2_card.c
index 7f377ec3486d..dabf8a871dcc 100644
--- a/sound/oss/pas2_card.c
+++ b/sound/oss/pas2_card.c
@@ -41,19 +41,19 @@ static int pas_irq;
41static int pas_sb_base; 41static int pas_sb_base;
42DEFINE_SPINLOCK(pas_lock); 42DEFINE_SPINLOCK(pas_lock);
43#ifndef CONFIG_PAS_JOYSTICK 43#ifndef CONFIG_PAS_JOYSTICK
44static int joystick; 44static bool joystick;
45#else 45#else
46static int joystick = 1; 46static bool joystick = 1;
47#endif 47#endif
48#ifdef SYMPHONY_PAS 48#ifdef SYMPHONY_PAS
49static int symphony = 1; 49static bool symphony = 1;
50#else 50#else
51static int symphony; 51static bool symphony;
52#endif 52#endif
53#ifdef BROKEN_BUS_CLOCK 53#ifdef BROKEN_BUS_CLOCK
54static int broken_bus_clock = 1; 54static bool broken_bus_clock = 1;
55#else 55#else
56static int broken_bus_clock; 56static bool broken_bus_clock;
57#endif 57#endif
58 58
59static struct address_info cfg; 59static struct address_info cfg;