From: Rusty Russell Date: Thu, 15 Dec 2011 03:04:50 +0000 (+1030) Subject: mmc: vub300: fix type of firmware_rom_wait_states module parameter X-Git-Tag: firefly_0821_release~7541^2~2065 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2aad1ca4711a46ca4540c924ffb84e7673a4738c;p=firefly-linux-kernel-4.4.55.git mmc: vub300: fix type of firmware_rom_wait_states module parameter commit 61074287c2965edf0fc75b54ae8f4ce99f182669 upstream. You didn't mean this to be a bool. Signed-off-by: Rusty Russell Acked-by: Tony Olech Signed-off-by: Chris Ball Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c index d4455ffbefd8..52f4b644766a 100644 --- a/drivers/mmc/host/vub300.c +++ b/drivers/mmc/host/vub300.c @@ -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)");