diff options
| author | Rogerio Pimentel <rpimentel.silva@gmail.com> | 2010-10-25 12:55:14 -0200 | 
|---|---|---|
| committer | Sascha Hauer <s.hauer@pengutronix.de> | 2010-10-26 16:23:06 +0200 | 
| commit | 4a74bddcc52e5d76681f4910203c9d435370f04c (patch) | |
| tree | a336e66ba90fdf25b84d9cb73e6ddaca9be6dcd4 | |
| parent | b8be7b9a6d3c7b63df9fc356a81288d5404ff505 (diff) | |
mx31_3ds: Fix spi registration
Commit (06606ff13) "ARM: imx: dynamically register spi_imx devices
(imx31)" registered the wrong SPI port for mx31_3ds board.
mx31_3ds uses SPI2 to connect to the MC13783 PMIC.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
| -rw-r--r-- | arch/arm/mach-mx3/mach-mx31_3ds.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mx3/mach-mx31_3ds.c b/arch/arm/mach-mx3/mach-mx31_3ds.c index 56fff3bb1243..f93af4621588 100644 --- a/arch/arm/mach-mx3/mach-mx31_3ds.c +++ b/arch/arm/mach-mx3/mach-mx31_3ds.c @@ -242,7 +242,7 @@ static void __init mxc_board_init(void)  	imx31_add_imx_uart0(&uart_pdata);  	imx31_add_mxc_nand(&mx31_3ds_nand_board_info); -	imx31_add_spi_imx0(&spi1_pdata); +	imx31_add_spi_imx1(&spi1_pdata);  	spi_register_board_info(mx31_3ds_spi_devs,  						ARRAY_SIZE(mx31_3ds_spi_devs));  | 
