diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-12-14 22:19:36 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-12-19 04:34:41 -0500 |
commit | a67ff6a54095e27093ea501fb143fefe51a536c2 (patch) | |
tree | 48cb687a7569a8b6d4051bc9051f565b43803982 /sound/oss/pas2_card.c | |
parent | 1bba160a0777046967707bbcdc9fb09d334ab2e5 (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.c | 12 |
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; | |||
41 | static int pas_sb_base; | 41 | static int pas_sb_base; |
42 | DEFINE_SPINLOCK(pas_lock); | 42 | DEFINE_SPINLOCK(pas_lock); |
43 | #ifndef CONFIG_PAS_JOYSTICK | 43 | #ifndef CONFIG_PAS_JOYSTICK |
44 | static int joystick; | 44 | static bool joystick; |
45 | #else | 45 | #else |
46 | static int joystick = 1; | 46 | static bool joystick = 1; |
47 | #endif | 47 | #endif |
48 | #ifdef SYMPHONY_PAS | 48 | #ifdef SYMPHONY_PAS |
49 | static int symphony = 1; | 49 | static bool symphony = 1; |
50 | #else | 50 | #else |
51 | static int symphony; | 51 | static bool symphony; |
52 | #endif | 52 | #endif |
53 | #ifdef BROKEN_BUS_CLOCK | 53 | #ifdef BROKEN_BUS_CLOCK |
54 | static int broken_bus_clock = 1; | 54 | static bool broken_bus_clock = 1; |
55 | #else | 55 | #else |
56 | static int broken_bus_clock; | 56 | static bool broken_bus_clock; |
57 | #endif | 57 | #endif |
58 | 58 | ||
59 | static struct address_info cfg; | 59 | static struct address_info cfg; |