diff options
Diffstat (limited to 'arch/arm/mach-at91/board-neocore926.c')
| -rw-r--r-- | arch/arm/mach-at91/board-neocore926.c | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/arm/mach-at91/board-neocore926.c b/arch/arm/mach-at91/board-neocore926.c index ef816c17dc6..3f8617c0e04 100644 --- a/arch/arm/mach-at91/board-neocore926.c +++ b/arch/arm/mach-at91/board-neocore926.c @@ -72,6 +72,7 @@ static void __init neocore926_init_early(void)  static struct at91_usbh_data __initdata neocore926_usbh_data = {  	.ports		= 2,  	.vbus_pin	= { AT91_PIN_PA24, AT91_PIN_PA21 }, +	.overcurrent_pin= {-EINVAL, -EINVAL},  };  /* @@ -79,7 +80,7 @@ static struct at91_usbh_data __initdata neocore926_usbh_data = {   */  static struct at91_udc_data __initdata neocore926_udc_data = {  	.vbus_pin	= AT91_PIN_PA25, -	.pullup_pin	= 0,		/* pull-up driven by UDC */ +	.pullup_pin	= -EINVAL,		/* pull-up driven by UDC */  }; @@ -149,13 +150,14 @@ static struct at91_mmc_data __initdata neocore926_mmc_data = {  	.wire4		= 1,  	.det_pin	= AT91_PIN_PE18,  	.wp_pin		= AT91_PIN_PE19, +	.vcc_pin	= -EINVAL,  };  /*   * MACB Ethernet device   */ -static struct at91_eth_data __initdata neocore926_macb_data = { +static struct macb_platform_data __initdata neocore926_macb_data = {  	.phy_irq_pin	= AT91_PIN_PE31,  	.is_rmii	= 1,  }; @@ -190,6 +192,7 @@ static struct atmel_nand_data __initdata neocore926_nand_data = {  	.enable_pin		= AT91_PIN_PD15,  	.parts			= neocore926_nand_partition,  	.num_parts		= ARRAY_SIZE(neocore926_nand_partition), +	.det_pin		= -EINVAL,  };  static struct sam9_smc_config __initdata neocore926_nand_smc_config = { @@ -213,7 +216,7 @@ static struct sam9_smc_config __initdata neocore926_nand_smc_config = {  static void __init neocore926_add_device_nand(void)  {  	/* configure chip-select 3 (NAND) */ -	sam9_smc_configure(3, &neocore926_nand_smc_config); +	sam9_smc_configure(0, 3, &neocore926_nand_smc_config);  	at91_add_device_nand(&neocore926_nand_data);  }  |