diff options
Diffstat (limited to 'arch/arm/mach-imx/mach-mx51_babbage.c')
| -rw-r--r-- | arch/arm/mach-imx/mach-mx51_babbage.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-imx/mach-mx51_babbage.c b/arch/arm/mach-imx/mach-mx51_babbage.c index dde397014d4..7b31cbde877 100644 --- a/arch/arm/mach-imx/mach-mx51_babbage.c +++ b/arch/arm/mach-imx/mach-mx51_babbage.c @@ -307,18 +307,18 @@ static const struct mxc_usbh_platform_data usbh1_config __initconst = {  	.portsc	= MXC_EHCI_MODE_ULPI,  }; -static int otg_mode_host; +static bool otg_mode_host __initdata;  static int __init babbage_otg_mode(char *options)  {  	if (!strcmp(options, "host")) -		otg_mode_host = 1; +		otg_mode_host = true;  	else if (!strcmp(options, "device")) -		otg_mode_host = 0; +		otg_mode_host = false;  	else  		pr_info("otg_mode neither \"host\" nor \"device\". "  			"Defaulting to device\n"); -	return 0; +	return 1;  }  __setup("otg_mode=", babbage_otg_mode); @@ -411,7 +411,7 @@ static void __init mx51_babbage_init(void)  	spi_register_board_info(mx51_babbage_spi_board_info,  		ARRAY_SIZE(mx51_babbage_spi_board_info));  	imx51_add_ecspi(0, &mx51_babbage_spi_pdata); -	imx51_add_imx2_wdt(0, NULL); +	imx51_add_imx2_wdt(0);  }  static void __init mx51_babbage_timer_init(void)  |