mmc: vub300: fix type of firmware_rom_wait_states module parameter
authorRusty Russell <rusty@rustcorp.com.au>
Thu, 15 Dec 2011 03:04:50 +0000 (13:34 +1030)
committerChris Ball <cjb@laptop.org>
Mon, 19 Dec 2011 23:56:09 +0000 (15:56 -0800)
You didn't mean this to be a bool.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: Tony Olech <tony.olech@elandigitalsystems.com>
Cc: <stable@kernel.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/host/vub300.c

index e8f6e65..2ec978b 100644 (file)
@@ -259,7 +259,7 @@ static int firmware_rom_wait_states = 0x04;
 static int firmware_rom_wait_states = 0x1C;
 #endif
 
-module_param(firmware_rom_wait_states, bool, 0644);
+module_param(firmware_rom_wait_states, int, 0644);
 MODULE_PARM_DESC(firmware_rom_wait_states,
                 "ROM wait states byte=RRRIIEEE (Reserved Internal External)");