ALSA: module_param: make bool parameters really bool
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / sound / oss / pas2_card.c
index 7f377ec3486d9f822c14fe2c77fb35d85f49cfd2..dabf8a871dcc26b75166712e3ee109136f7babd6 100644 (file)
@@ -41,19 +41,19 @@ static int      pas_irq;
 static int      pas_sb_base;
 DEFINE_SPINLOCK(pas_lock);
 #ifndef CONFIG_PAS_JOYSTICK
-static int     joystick;
+static bool    joystick;
 #else
-static int     joystick = 1;
+static bool    joystick = 1;
 #endif
 #ifdef SYMPHONY_PAS
-static int     symphony = 1;
+static bool    symphony = 1;
 #else
-static int     symphony;
+static bool    symphony;
 #endif
 #ifdef BROKEN_BUS_CLOCK
-static int     broken_bus_clock = 1;
+static bool    broken_bus_clock = 1;
 #else
-static int     broken_bus_clock;
+static bool    broken_bus_clock;
 #endif
 
 static struct address_info cfg;