Skip to content

Commit

Permalink
mmc: vub300: fix type of firmware_rom_wait_states module parameter
Browse files Browse the repository at this point in the history
You didn't mean this to be a bool.

Signed-off-by: Rusty Russell <[email protected]>
Acked-by: Tony Olech <[email protected]>
Cc: <[email protected]>
Signed-off-by: Chris Ball <[email protected]>
  • Loading branch information
rustyrussell authored and cjb committed Dec 19, 2011
1 parent 5c7f0e0 commit 6107428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mmc/host/vub300.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)");

Expand Down

0 comments on commit 6107428

Please sign in to comment.