module_param: make bool parameters really bool (drivers & misc)
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.
Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -73,9 +73,9 @@ static const char speedtch_driver_name[] = "speedtch";
|
||||
#define DEFAULT_SW_BUFFERING 0
|
||||
|
||||
static unsigned int altsetting = 0; /* zero means: use the default */
|
||||
static int dl_512_first = DEFAULT_DL_512_FIRST;
|
||||
static int enable_isoc = DEFAULT_ENABLE_ISOC;
|
||||
static int sw_buffering = DEFAULT_SW_BUFFERING;
|
||||
static bool dl_512_first = DEFAULT_DL_512_FIRST;
|
||||
static bool enable_isoc = DEFAULT_ENABLE_ISOC;
|
||||
static bool sw_buffering = DEFAULT_SW_BUFFERING;
|
||||
|
||||
#define DEFAULT_B_MAX_DSL 8128
|
||||
#define DEFAULT_MODEM_MODE 11
|
||||
|
Reference in New Issue
Block a user